Skip to content

Commit 56ac66b

Browse files
committed
AS3 Intrinsic Library Improvement update 1
Removed FP19 methods from FP11 template.
1 parent 4544a2c commit 56ac66b

File tree

1 file changed

+0
-6
lines changed
  • FlashDevelop/Bin/Debug/Library/AS3/intrinsic/FP11

1 file changed

+0
-6
lines changed

FlashDevelop/Bin/Debug/Library/AS3/intrinsic/FP11/Vector.as

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,6 @@ package
2727
/// [FP10] Searches for an item in the Vector and returns the index position of the item.
2828
public function indexOf (searchElement:T, fromIndex:int = 0) : int;
2929

30-
/// [FP19] Insert a single element into the Vector.
31-
public function insertAt (index:int, element:T) : void;
32-
3330
/// [FP10] Converts the elements in the Vector to strings.
3431
public function join (sep:String = ",") : String;
3532

@@ -45,9 +42,6 @@ package
4542
/// [FP10] Adds one or more elements to the end of the Vector and returns the new length of the Vector.
4643
public function push (...args) : uint;
4744

48-
/// [FP19] Remove a single element from the Vector.
49-
public function removeAt (index:int) : T;
50-
5145
/// [FP10] Reverses the order of the elements in the Vector.
5246
public function reverse () : Vector.<T>;
5347

0 commit comments

Comments
 (0)