| Modifier and Type | Field and Description |
|---|---|
protected IntSet |
current |
protected long |
first |
protected IntSet.IntIterator |
itr |
protected Iterator<Map.Entry<Long,IntSet>> |
otherItrs |
| Modifier and Type | Method and Description |
|---|---|
boolean |
hasNext() |
long |
next() |
protected void |
nextItr() |
void |
remove()
Removes from the underlying collection the last element returned by
the iterator (optional operation).
|
void |
skipAllBefore(long element)
Skips all the elements before the the specified element, so that
next() gives the given element or, if it does not exist, the
element immediately after according to the sorting provided by this
set. |
protected IntSet.IntIterator itr
protected long first
protected IntSet current
protected void nextItr()
public boolean hasNext()
public long next()
NoSuchElementException - iteration has no more elements.public void remove()
UnsupportedOperationException - if the remove operation is not supported by
this Iterator.IllegalStateException - if the next method has not yet been called,
or the remove method has already been called
after the last call to the next method.public void skipAllBefore(long element)
next() gives the given element or, if it does not exist, the
element immediately after according to the sorting provided by this
set.
If element is less than the next element, it does
nothing
element - first element to not skipCopyright © 2016. All rights reserved.