it.unimi.dsi.fastutil.floats
Interface Float2DoubleSortedMap

All Superinterfaces:
Float2DoubleMap, Map, SortedMap
All Known Implementing Classes:
AbstractFloat2DoubleSortedMap, Float2DoubleAVLTreeMap, Float2DoubleLinkedOpenHashMap, Float2DoubleRBTreeMap, Float2DoubleSortedMaps.EmptySortedMap, Float2DoubleSortedMaps.Singleton, Float2DoubleSortedMaps.SynchronizedSortedMap, Float2DoubleSortedMaps.UnmodifiableSortedMap

public interface Float2DoubleSortedMap
extends Float2DoubleMap, 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.floats.Float2DoubleMap
Float2DoubleMap.Entry
 
Method Summary
 float firstFloatKey()
           
 Float2DoubleSortedMap headMap(float toKey)
           
 float lastFloatKey()
           
 Float2DoubleSortedMap subMap(float fromKey, float toKey)
           
 Float2DoubleSortedMap tailMap(float fromKey)
           
 
Methods inherited from interface it.unimi.dsi.fastutil.floats.Float2DoubleMap
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 Float2DoubleSortedMap subMap(float fromKey,
                                    float toKey)
See Also:
SortedMap.subMap(Object,Object)

headMap

public Float2DoubleSortedMap headMap(float toKey)
See Also:
SortedMap.headMap(Object)

tailMap

public Float2DoubleSortedMap tailMap(float fromKey)
See Also:
SortedMap.tailMap(Object)

firstFloatKey

public float firstFloatKey()
See Also:
SortedMap.firstKey()

lastFloatKey

public float lastFloatKey()
See Also:
SortedMap.lastKey()