TArray

nape.TArray (Typedef)

Platform specific Array type.

For flash10+ This is flash.Vector<T>, and otherwise Array<T>.

#if flash10
typedef TArray<T> = flash.Vector<T>;
#else
typedef TArray<T> = Array<T>;
#end