it.unimi.dsi.fastutil.doubles
Interface Double2LongSortedMap
- All Superinterfaces:
- Double2LongMap, Map, SortedMap
- All Known Implementing Classes:
- AbstractDouble2LongSortedMap, Double2LongAVLTreeMap, Double2LongLinkedOpenHashMap, Double2LongRBTreeMap, Double2LongSortedMaps.EmptySortedMap, Double2LongSortedMaps.Singleton, Double2LongSortedMaps.SynchronizedSortedMap
- public interface Double2LongSortedMap
- extends Double2LongMap, SortedMap
A type-specific SortedMap
; provides some additional methods that use polymorphism to reduce type juggling.
- See Also:
SortedMap
Methods inherited from interface java.util.Map |
clear, containsKey, containsValue, entrySet, equals, get, hashCode, isEmpty, keySet, put, putAll, remove, size, values |
subMap
public Double2LongSortedMap subMap(double fromKey,
double toKey)
- See Also:
SortedMap.subMap(Object,Object)
headMap
public Double2LongSortedMap headMap(double toKey)
- See Also:
SortedMap.headMap(Object)
tailMap
public Double2LongSortedMap tailMap(double fromKey)
- See Also:
SortedMap.tailMap(Object)
firstDoubleKey
public double firstDoubleKey()
- See Also:
SortedMap.firstKey()
lastDoubleKey
public double lastDoubleKey()
- See Also:
SortedMap.lastKey()