@:has_untypedstaticinlineconvert<T, U>(v:Vector<T>):Vector<U>
@:has_untypedstaticinlineofArray<T>(v:Array<T>):Vector<T>
new(?length:UInt, ?fixed:Bool)
fixed:Bool
length:Int
@:require(flash19)insertAt:(index:Int, element:T) ‑> Int
@:require(flash19)removeAt:(index:Int) ‑> T
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
reverse():Vector<T>
shift():Null<T>
slice(?pos:Int, ?end:Int):Vector<T>
sort(f:(T, T) ‑> Int):Void
splice(pos:Int, len:Int):Vector<T>
toString():String
unshift(x:T):Void