KoneMutableLinearIterator
Represents KoneLinearIterator and KoneReversibleMutableIterator at the same time.
Inheritors
Functions
Adds element right before the iterators pointer.
Gets the next element, moves forward, and returns the got element.
Gets the previous element, moves backward, and returns the got element.
Returns next element in the order or throws NoFollowingElementInIteratorException if there is no next element.
Returns previous element in the order or throws NoFollowingElementInIteratorException if there is no previous element.
Returns true
iff there is previous element in the order.
Moves forward bypassing next element or throws NoFollowingElementInIteratorException if there is no next element.
Moves backward bypassing previous element or throws NoFollowingElementInIteratorException if there is no previous element.
Returns index of the next element if it's present or throws NoFollowingElementInIteratorException if there is no next element.
Returns index of the previous element if it's present or throws NoFollowingElementInIteratorException if there is no previous element.
Removes the next element if it's present or throws NoFollowingElementInIteratorException if there is no next element.
Removes the previous element if it's present or throws NoFollowingElementInIteratorException if there is no previous element.
Changes the next element if it is present or throws NoFollowingElementInIteratorException if there is no next element.
Changes the previous element if it is present or throws NoFollowingElementInIteratorException if there is no previous element.