Package it.unimi.dsi.fastutil.objects
Interface Object2DoubleSortedMap.FastSortedEntrySet<K>
-
- All Superinterfaces:
Collection<Object2DoubleMap.Entry<K>>
,Iterable<Object2DoubleMap.Entry<K>>
,Object2DoubleMap.FastEntrySet<K>
,ObjectBidirectionalIterable<Object2DoubleMap.Entry<K>>
,ObjectCollection<Object2DoubleMap.Entry<K>>
,ObjectIterable<Object2DoubleMap.Entry<K>>
,ObjectSet<Object2DoubleMap.Entry<K>>
,ObjectSortedSet<Object2DoubleMap.Entry<K>>
,Set<Object2DoubleMap.Entry<K>>
,SortedSet<Object2DoubleMap.Entry<K>>
- Enclosing interface:
- Object2DoubleSortedMap<K>
public static interface Object2DoubleSortedMap.FastSortedEntrySet<K> extends ObjectSortedSet<Object2DoubleMap.Entry<K>>, Object2DoubleMap.FastEntrySet<K>
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 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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ObjectBidirectionalIterator<Object2DoubleMap.Entry<K>>
fastIterator()
Returns a fast iterator over this entry set; the iterator might return always the same entry instance, suitably mutated.ObjectBidirectionalIterator<Object2DoubleMap.Entry<K>>
fastIterator(Object2DoubleMap.Entry<K> 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 java.util.Collection
parallelStream, removeIf, stream, toArray
-
Methods inherited from interface it.unimi.dsi.fastutil.objects.Object2DoubleMap.FastEntrySet
fastForEach
-
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<Object2DoubleMap.Entry<K>> fastIterator()
Returns a fast iterator over this entry set; the iterator might return always the same entry instance, suitably mutated.- Specified by:
fastIterator
in interfaceObject2DoubleMap.FastEntrySet<K>
- Returns:
- a fast iterator over this entry set; the iterator might return always the same
Map.Entry
instance, suitably mutated.
-
fastIterator
ObjectBidirectionalIterator<Object2DoubleMap.Entry<K>> fastIterator(Object2DoubleMap.Entry<K> 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.
-
-