Package it.unimi.dsi.fastutil.floats
Class FloatSpliterators.AbstractIndexBasedSpliterator
java.lang.Object
it.unimi.dsi.fastutil.floats.AbstractFloatSpliterator
it.unimi.dsi.fastutil.floats.FloatSpliterators.AbstractIndexBasedSpliterator
- All Implemented Interfaces:
it.unimi.dsi.fastutil.floats.FloatSpliterator,java.util.Spliterator<java.lang.Float>,java.util.Spliterator.OfPrimitive<java.lang.Float,FloatConsumer,it.unimi.dsi.fastutil.floats.FloatSpliterator>
- Direct Known Subclasses:
FloatSpliterators.EarlyBindingSizeIndexBasedSpliterator,FloatSpliterators.LateBindingSizeIndexBasedSpliterator
- Enclosing class:
- FloatSpliterators
public abstract static class FloatSpliterators.AbstractIndexBasedSpliterator extends AbstractFloatSpliterator
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_VALUE long.
If your backing data store can be bigger then this, consider the equivalently named class in
the type specific BigSpliterators class.
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).
-
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>> -
Field Summary
Fields inherited from interface java.util.Spliterator
CONCURRENT, DISTINCT, IMMUTABLE, NONNULL, ORDERED, SIZED, SORTED, SUBSIZED -
Method Summary
Modifier and Type Method Description intcharacteristics()longestimateSize()voidforEachRemaining(FloatConsumer action)longskip(long n)booleantryAdvance(FloatConsumer action)it.unimi.dsi.fastutil.floats.FloatSpliteratortrySplit()Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface it.unimi.dsi.fastutil.floats.FloatSpliterator
forEachRemaining, getComparator, tryAdvanceMethods inherited from interface java.util.Spliterator
getExactSizeIfKnown, hasCharacteristics
-
Method Details
-
characteristics
public int characteristics() -
estimateSize
public long estimateSize() -
tryAdvance
-
forEachRemaining
-
skip
public long skip(long n) -
trySplit
public it.unimi.dsi.fastutil.floats.FloatSpliterator 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.
-