typedef nape.TArray<T> = Vector<T>

Available on all platforms

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
 *