it.unimi.dsi.fastutil.shorts
Interface Short2DoubleSortedMap
- All Superinterfaces:
- Map, Short2DoubleMap, SortedMap
- All Known Implementing Classes:
- Short2DoubleAVLTreeMap, Short2DoubleLinkedOpenHashMap, Short2DoubleRBTreeMap
- public interface Short2DoubleSortedMap
- extends Short2DoubleMap, 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 Short2DoubleSortedMap subMap(short fromKey,
short toKey)
- See Also:
SortedMap.subMap(Object,Object)
headMap
public Short2DoubleSortedMap headMap(short toKey)
- See Also:
SortedMap.headMap(Object)
tailMap
public Short2DoubleSortedMap tailMap(short fromKey)
- See Also:
SortedMap.tailMap(Object)
firstShortKey
public short firstShortKey()
- See Also:
SortedMap.firstKey()
lastShortKey
public short lastShortKey()
- See Also:
SortedMap.lastKey()