package cs
extends Array
Available on csRepresents a C# fixed-size Array (
T[])
new (len:Int)len
read only length:IntAlias to array's Length property. Returns the size of the array
inline iterator ():NativeArrayIterator<T>Returns an iterator so it's possible to use for with C#'s NativeArray
static Reverse (arr:Array):Voidstatic make<T> (elements:Rest<T>):NativeArray<T>Creates a new array with the specified elements.
Usage:
var elements = NativeArray.make(1,2,3,4,5,6);
© 2005–2016 Haxe Foundation
Licensed under a MIT license.
http://api.haxe.org/cs/NativeArray.html