Platform specific Array type.

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

if flash10

typedef TArray&lt;T&gt; = flash.Vector&lt;T&gt;;

else

typedef TArray&lt;T&gt; = Array&lt;T&gt;;

end

Alias

alias for flash.Vector<T>