public abstract static class ObjectSpliterators.LateBindingSizeIndexBasedSpliterator<K> extends ObjectSpliterators.AbstractIndexBasedSpliterator<K>
This class implements a late binding strategy. On a new, non-split instance, the
max pos
will track the given data store (usually it's
size, hence the class' name). On the first
split, the last index will be read from the backing data store one
last time and then be fixed for the remaining duration of this instance.
The returned split should should also be have a constant maxPos
.
As the abstract methods in this class are used in inner loops, it is generally a
good idea to override the class as final
as to encourage the JVM to inline
them (or alternatively, override the abstract methods as final).
Modifier and Type | Method and Description |
---|---|
ObjectSpliterator<K> |
trySplit() |
characteristics, estimateSize, forEachRemaining, skip, tryAdvance
public ObjectSpliterator<K> trySplit()
ObjectSpliterators.AbstractIndexBasedSpliterator
trySplit
in interface ObjectSpliterator<K>
trySplit
in interface java.util.Spliterator<K>
trySplit
in class ObjectSpliterators.AbstractIndexBasedSpliterator<K>