package cs
extends Array
Available on cs
Represents a C# fixed-size Array (T[])
staticReverse(arr:Array):Voidstaticmake<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);
new(len:Int)len
read onlylength:IntAlias to array's Length property. Returns the size of the array
inlineiterator():NativeArrayIterator<T>Returns an iterator so it's possible to use for with C#'s NativeArray
© 2005–2020 Haxe Foundation
Licensed under a MIT license.
https://api.haxe.org/cs/NativeArray.html