Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…

package nape; | |
!!/** | |
!! * Platform specific Array type. | |
!! * <br/><br/> | |
!! * For flash10+ This is <code>flash.Vector<T></code>, and otherwise | |
!! * <code>Array<T></code>. | |
!! * <pre> | |
!! * #if flash10 | |
!! * typedef TArray<T> = flash.Vector<T>; | |
!! * #else | |
!! * typedef TArray<T> = Array<T>; | |
!! * #end | |
!! * </pre> | |
!! */ | |
typedef TArray<T> = #if flash10 flash.Vector<T> #else Array<T> #end; |