1 2 3 4 5 6 7 8 |
/* <license> * This file is part of the dis-Emi-A HaXe Library. Copyright (c) edA-qa mort-ora-y * For full copyright and license information please refer to doc/license.txt. * </license> */ //PERFORMANCE: In AS3 Compiler Array is far faster than List! Liekly since array is native and List is not. typedef FastList<T> = Array<T>; |