File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
FlashDevelop/Bin/Debug/Library/AS3/intrinsic/FP11 Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,9 @@ package
27
27
/// [FP10] Searches for an item in the Vector and returns the index position of the item.
28
28
public function indexOf (searchElement:T, fromIndex:int = 0) : int ;
29
29
30
+ /// [FP19] Insert a single element into the Vector.
31
+ public function insertAt (index:int , element:T) : void ;
32
+
30
33
/// [FP10] Converts the elements in the Vector to strings.
31
34
public function join (sep:String = ",") : String ;
32
35
@@ -42,6 +45,9 @@ package
42
45
/// [FP10] Adds one or more elements to the end of the Vector and returns the new length of the Vector.
43
46
public function push (...args) : uint ;
44
47
48
+ /// [FP19] Remove a single element from the Vector.
49
+ public function removeAt (index:int ) : T;
50
+
45
51
/// [FP10] Reverses the order of the elements in the Vector.
46
52
public function reverse () : Vector.<T>;
47
53
You can’t perform that action at this time.
0 commit comments