it.unimi.dsi.fastutil.ints
Interface Int2IntSortedMap
- All Superinterfaces:
- Int2IntMap, Map, SortedMap
- All Known Implementing Classes:
- AbstractInt2IntSortedMap, Int2IntAVLTreeMap, Int2IntLinkedOpenHashMap, Int2IntRBTreeMap, Int2IntSortedMaps.EmptySortedMap, Int2IntSortedMaps.Singleton, Int2IntSortedMaps.SynchronizedSortedMap
- public interface Int2IntSortedMap
- extends Int2IntMap, 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 Int2IntSortedMap subMap(int fromKey,
int toKey)
- See Also:
SortedMap.subMap(Object,Object)
headMap
public Int2IntSortedMap headMap(int toKey)
- See Also:
SortedMap.headMap(Object)
tailMap
public Int2IntSortedMap tailMap(int fromKey)
- See Also:
SortedMap.tailMap(Object)
firstIntKey
public int firstIntKey()
- See Also:
SortedMap.firstKey()
lastIntKey
public int lastIntKey()
- See Also:
SortedMap.lastKey()