ReusableArray

ceramic.ReusableArray (Class)

A reusable array to use in places that need a temporary array many times. Changing array size only increases the backing array size but never decreases it.

Instance Members

length: Int

get(index: Int): ceramic.ReusableArray.T
Name Type
index Int
Returns
ceramic.ReusableArray.T

set(index: Int, value: ceramic.ReusableArray.T): Void
Name Type
index Int
value ceramic.ReusableArray.T

new(length: Int): Void
Name Type
length Int

Private Members

vector: haxe.ds.Vector<ceramic.ReusableArray.T>