Class ObjectSpliterators.AbstractIndexBasedSpliterator<K>
- java.lang.Object
-
- it.unimi.dsi.fastutil.objects.AbstractObjectSpliterator<K>
-
- it.unimi.dsi.fastutil.objects.ObjectSpliterators.AbstractIndexBasedSpliterator<K>
-
- All Implemented Interfaces:
ObjectSpliterator<K>,java.util.Spliterator<K>
- Direct Known Subclasses:
ObjectSpliterators.EarlyBindingSizeIndexBasedSpliterator,ObjectSpliterators.LateBindingSizeIndexBasedSpliterator
- Enclosing class:
- ObjectSpliterators
public abstract static class ObjectSpliterators.AbstractIndexBasedSpliterator<K> extends AbstractObjectSpliterator<K>
A skeletal implementation for a spliterator backed by an index based data store. High performance concrete implementations (like the main Spliterator of ArrayList) generally should avoid using this and just implement the interface directly, but should be decent for less performance critical implementations.This class is only appropriate for sequences that are at most
Integer.MAX_VALUElong. If your backing data store can be bigger then this, consider the equivalently named class in the type specificBigSpliteratorsclass.As the abstract methods in this class are used in inner loops, it is generally a good idea to override the class as
finalas to encourage the JVM to inline them (or alternatively, override the abstract methods as final).
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface java.util.Spliterator
java.util.Spliterator.OfDouble, java.util.Spliterator.OfInt, java.util.Spliterator.OfLong, java.util.Spliterator.OfPrimitive<T extends java.lang.Object,T_CONS extends java.lang.Object,T_SPLITR extends java.util.Spliterator.OfPrimitive<T,T_CONS,T_SPLITR>>
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intcharacteristics()longestimateSize()voidforEachRemaining(java.util.function.Consumer<? super K> action)longskip(long n)Skips the given number of elements.booleantryAdvance(java.util.function.Consumer<? super K> action)ObjectSpliterator<K>trySplit()
-
-
-
Method Detail
-
characteristics
public int characteristics()
-
estimateSize
public long estimateSize()
-
tryAdvance
public boolean tryAdvance(java.util.function.Consumer<? super K> action)
-
forEachRemaining
public void forEachRemaining(java.util.function.Consumer<? super K> action)
-
skip
public long skip(long n)
Description copied from interface:ObjectSpliteratorSkips the given number of elements.The effect of this call is exactly the same as that of calling
Spliterator.tryAdvance(java.util.function.Consumer<? super T>)forntimes (possibly stopping ifSpliterator.tryAdvance(java.util.function.Consumer<? super T>)returns false). The action called will do nothing; elements will be discarded.- Parameters:
n- the number of elements to skip.- Returns:
- the number of elements actually skipped.
- See Also:
Spliterator.tryAdvance(java.util.function.Consumer<? super T>)
-
trySplit
public ObjectSpliterator<K> trySplit()
- Throws:
java.lang.IndexOutOfBoundsException- if the return ofcomputeSplitPoint()was< posor> {@link #getMaxPos()}.- Implementation Specification:
- This implementation always returns a prefix of the elements, in order to comply with
the
Spliterator.ORDEREDproperty. This means this current iterator does not need to to update whatgetMaxPos()returns in response to this method (but it may do "book-keeping" on it based on binding strategy).The split point is computed by
computeSplitPoint(); see that method for details.
-
-