tango.util.collection.iterator.ArrayIterator

class ArrayIterator(T) : GuardIterator!(T) #
ArrayIterator allows you to use arrays as Iterators

Author:

Doug Lea @version 0.93

For an introduction to this package see Overview .

this(T arr[] arr) [public] #
Build an enumeration that returns successive elements of the array
uint remaining() [public] #
Implements tango.util.collection.impl.Collection.CollectionIterator.remaining

See Also:

tango.util.collection.impl.Collection.CollectionIterator.remaining
bool more() [public] #
Implements tango.util.collection.model.Iterator.more.

See Also:

tango.util.collection.model.Iterator.more
bool corrupted() [public] #
Implements tango.util.collection.impl.Collection.CollectionIterator.corrupted. Always false. Inconsistency cannot be reliably detected for arrays

Returns:

false

See Also:

tango.util.collection.impl.Collection.CollectionIterator.corrupted
T get() [public] #
Implements tango.util.collection.model.Iterator.get().

See Also:

tango.util.collection.model.Iterator.get()