libperun

Class std.cont.ArrayIterator

Synopsis

public  class ArrayIterator< T > extends Iterator< T >

Iterator through an array.

Fields

Constructors

public ArrayIterator(T[] array);

Construct the iterator to scan the specified array.

public ArrayIterator(T[] array,int startPos,int numElements);

Construct the iterator, scanning the specified array from the specified position, assuming it has only numElements elements (instead of its length).

Methods

public bool end();

No description given

public T get();

No description given

public void next();

No description given