Represents a C# fixed-size Array (T[]
)
Static methods
staticmake<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);
Constructor
Variables
Methods
inlineiterator():NativeArrayIterator<T>
Returns an iterator so it's possible to use for
with C#'s NativeArray