it.unimi.dsi.fastutil.doubles
Interface Double2LongSortedMap

All Superinterfaces:
Double2LongMap, Map, SortedMap
All Known Implementing Classes:
Double2LongAVLTreeMap, Double2LongLinkedOpenHashMap, Double2LongRBTreeMap

public interface Double2LongSortedMap
extends Double2LongMap, SortedMap

A type-specific SortedMap; provides some additional methods that use polymorphism to reduce type juggling.

See Also:
SortedMap

Nested Class Summary
 
Nested classes inherited from class it.unimi.dsi.fastutil.doubles.Double2LongMap
Double2LongMap.Entry
 
Method Summary
 double firstDoubleKey()
           
 Double2LongSortedMap headMap(double toKey)
           
 double lastDoubleKey()
           
 Double2LongSortedMap subMap(double fromKey, double toKey)
           
 Double2LongSortedMap tailMap(double fromKey)
           
 
Methods inherited from interface it.unimi.dsi.fastutil.doubles.Double2LongMap
containsKey, containsValue, defaultReturnValue, defaultReturnValue, get, getDefRetValue, put, remove, setDefRetValue
 
Methods inherited from interface java.util.Map
clear, containsKey, containsValue, entrySet, equals, get, hashCode, isEmpty, keySet, put, putAll, remove, size, values
 
Methods inherited from interface java.util.SortedMap
comparator, firstKey, headMap, lastKey, subMap, tailMap
 

Method Detail

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()