Class ShortSpliterators.AbstractIndexBasedSpliterator

java.lang.Object
it.unimi.dsi.fastutil.shorts.AbstractShortSpliterator
it.unimi.dsi.fastutil.shorts.ShortSpliterators.AbstractIndexBasedSpliterator
All Implemented Interfaces:
ShortSpliterator, Spliterator<Short>, Spliterator.OfPrimitive<Short,ShortConsumer,ShortSpliterator>
Direct Known Subclasses:
ShortSpliterators.EarlyBindingSizeIndexBasedSpliterator, ShortSpliterators.LateBindingSizeIndexBasedSpliterator
Enclosing class:
ShortSpliterators

public abstract static class ShortSpliterators.AbstractIndexBasedSpliterator extends AbstractShortSpliterator
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).