- class ArrayIterator(T) : GuardIterator!(T) ¶#
-
ArrayIterator allows you to use arrays as Iterators
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
tango.util.collection.impl.Collection.CollectionIterator.remaining
- bool more() [public] ¶#
-
Implements tango.util.collection.model.Iterator.more.
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
false
tango.util.collection.impl.Collection.CollectionIterator.corrupted
- T get() [public] ¶#
-
Implements tango.util.collection.model.Iterator.get().
tango.util.collection.model.Iterator.get()