Static methods

@:has_untypedstaticinlineconvert<T, U>(v:Vector<T>):Vector<U>

@:has_untypedstaticinlineofArray<T>(v:Array<T>):Vector<T>

Constructor

new(?length:UInt, ?fixed:Bool)

Variables

@:require(flash19)insertAt:(index:Int, element:T) ‑> Int

@:require(flash19)removeAt:(index:Int) ‑> T

Methods

concat(?a:Vector<T>):Vector<T>

indexOf(x:T, ?from:Int):Int

@:value({ sep : "," })join(sep:String = ","):String

lastIndexOf(x:T, ?from:Int):Int

pop():Null<T>

push(x:T):Int

shift():Null<T>

slice(?pos:Int, ?end:Int):Vector<T>

sort(f:(T, T) ‑> Int):Void

splice(pos:Int, len:Int):Vector<T>