Lines Matching defs:ArrayList
12 * Generic ArrayList class for managing lists of items and iterating operations
16 * ArrayList, then use ArrayList.addMethod to mirror the API of the constituent
23 * @class ArrayList
27 function ArrayList( items ) {
60 * @return { ArrayList } this instance
130 * @return { Array } an array representation of the ArrayList
141 * methods added with <code>ArrayList.addMethod()</code>.
152 Y.mix(ArrayList.prototype, ArrayListProto);
154 Y.mix( ArrayList, {
209 Y.ArrayList = ArrayList;