Package it.unimi.dsi.fastutil.bytes
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
fastutilmaps might return entry set objects of typeFastSortedEntrySet: 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).
-
-
Method Summary
Modifier and Type Method Description ObjectBidirectionalIterator<Byte2ShortMap.Entry>fastIterator()Returns a fast iterator over this entry set; the iterator might return always the same entry instance, suitably mutated.ObjectBidirectionalIterator<Byte2ShortMap.Entry>fastIterator(Byte2ShortMap.Entry from)Returns a fast iterator over this entry set, starting from a given element of the domain (optional operation); the iterator might return always the same entry instance, suitably mutated.-
Methods inherited from interface it.unimi.dsi.fastutil.bytes.Byte2ShortMap.FastEntrySet
fastForEach
-
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
-
Methods inherited from interface it.unimi.dsi.fastutil.objects.ObjectSortedSet
headSet, iterator, iterator, subSet, tailSet
-
Methods inherited from interface java.util.Set
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, remove, removeAll, retainAll, size, toArray, toArray
-
Methods inherited from interface java.util.SortedSet
comparator, first, last, spliterator
-
-
-
-
Method Detail
-
fastIterator
ObjectBidirectionalIterator<Byte2ShortMap.Entry> fastIterator()
Returns a fast iterator over this entry set; the iterator might return always the same entry instance, suitably mutated.- Specified by:
fastIteratorin interfaceByte2ShortMap.FastEntrySet- Returns:
- a fast iterator over this entry set; the iterator might return always
the same
Map.Entryinstance, suitably mutated.
-
fastIterator
ObjectBidirectionalIterator<Byte2ShortMap.Entry> fastIterator(Byte2ShortMap.Entry from)
Returns a fast iterator over this entry set, starting from a given element of the domain (optional operation); the iterator might return always the same entry instance, suitably mutated.- Parameters:
from- an element to start from.- Returns:
- a fast iterator over this sorted entry set starting at
from; the iterator might return always the same entry object, suitably mutated.
-
-