ICollection

The ‘ICollection’ interface defines a common interface for all collection objects.

Summary
ICollectionThe ‘ICollection’ interface defines a common interface for all collection objects.
Functions
getIteratorReturns an iterator of the specified type.

Functions

getIterator

function getIterator(
   uIterator: uint = 2
):IIterator // 2 -> IteratorType.ARRAY_FORWARD

Returns an iterator of the specified type.

Parameters

param uIterator The iterator type to use for iterating through the data being stored by this collection. 

Returns

An iterator instance of the specified type. 

See Also

com.boostworthy.collections.iterators.IteratorType

The ‘Buffer’ class manages a collection of animations to be rendered at the same time.
The ‘HashMap’ class stores data in key/value pairs.
Stores data in a ‘first on, first off’ fashion.
Stores data in a ‘first on, last off’ fashion.
function getIterator(
   uIterator: uint = 2
):IIterator // 2 -> IteratorType.ARRAY_FORWARD
Returns an iterator of the specified type.
Close