KoneIterator
Represents an iterator over some elements (maybe even infinite number of elements) in some (maybe temporary) order.
In each moment it has a cursor pointing either between two elements, before the first one, or after the last one. If there are no elements in the collection, the pointer just points nowhere. All operations are made either before or after the cursor with previous or next element correspondingly.
Inheritors
Functions
Link copied to clipboard
Link copied to clipboard
Gets the next element, moves forward, and returns the got element.
Link copied to clipboard
Returns next element in the order or throws NoFollowingElementInIteratorException if there is no next element.
Link copied to clipboard
Link copied to clipboard
Moves forward bypassing next element or throws NoFollowingElementInIteratorException if there is no next element.
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard