- type
- typedef
Platform specific Array type.
For flash10+ This is flash.Vector<T>, and otherwise Array<T>.
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