Packagecom.boostworthy.collections
Interfacepublic interface ICollection
ImplementorsBuffer, HashMap, Queue, Stack

The 'ICollection' interface defines a common interface for all collection objects.



Public Methods
 MethodDefined by
  
getIterator(uIterator:uint = 2):IIterator
Returns an iterator of the specified type.
ICollection
Method detail
getIterator()method
public function getIterator(uIterator:uint = 2):IIterator

Returns an iterator of the specified type.

Parameters
uIterator:uint (default = 2) — The iterator type to use for iterating through the data being stored by this collection.

Returns
IIterator — An iterator instance of the specified type.

See also