Interface Byte2ShortSortedMap.FastSortedEntrySet

All Superinterfaces:
Byte2ShortMap.FastEntrySet, Collection<Byte2ShortMap.Entry>, Iterable<Byte2ShortMap.Entry>, ObjectBidirectionalIterable<Byte2ShortMap.Entry>, ObjectCollection<Byte2ShortMap.Entry>, ObjectIterable<Byte2ShortMap.Entry>, ObjectSet<Byte2ShortMap.Entry>, ObjectSortedSet<Byte2ShortMap.Entry>, Set<Byte2ShortMap.Entry>, SortedSet<Byte2ShortMap.Entry>
Enclosing interface:
Byte2ShortSortedMap

public static interface Byte2ShortSortedMap.FastSortedEntrySet
extends ObjectSortedSet<Byte2ShortMap.Entry>, Byte2ShortMap.FastEntrySet
A sorted entry set providing fast iteration.

In some cases (e.g., hash-based classes) iteration over an entry set requires the creation of a large number of entry objects. Some fastutil maps might return entry set objects of type FastSortedEntrySet: in this case, fastIterator() will return an iterator that is guaranteed not to create a large number of objects, possibly by returning always the same entry (of course, mutated).