| java.lang.Object net.metanotion.util.skiplist.SkipIterator
SkipIterator | public class SkipIterator implements ListIterator(Code) | | A basic iterator for a skip list.
This is not a complete ListIterator, in particular, since the
skip list is a map and is therefore indexed by Comparable objects instead
of int's, the nextIndex and previousIndex methods are not really relevant.
|
SkipIterator | protected SkipIterator()(Code) | | |
hasNext | public boolean hasNext()(Code) | | |
hasPrevious | public boolean hasPrevious()(Code) | | |
nextIndex | public int nextIndex()(Code) | | |
previousIndex | public int previousIndex()(Code) | | |
remove | public void remove()(Code) | | |
|
|