it.unimi.dsi.fastutil.ints
Interface Int2ReferenceSortedMap
- All Superinterfaces:
- Int2ReferenceMap, Map, SortedMap
- All Known Implementing Classes:
- AbstractInt2ReferenceSortedMap, Int2ReferenceAVLTreeMap, Int2ReferenceLinkedOpenHashMap, Int2ReferenceRBTreeMap, Int2ReferenceSortedMaps.EmptySortedMap, Int2ReferenceSortedMaps.Singleton, Int2ReferenceSortedMaps.SynchronizedSortedMap, Int2ReferenceSortedMaps.UnmodifiableSortedMap
- public interface Int2ReferenceSortedMap
- extends Int2ReferenceMap, 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 Int2ReferenceSortedMap subMap(int fromKey,
int toKey)
- See Also:
SortedMap.subMap(Object,Object)
headMap
public Int2ReferenceSortedMap headMap(int toKey)
- See Also:
SortedMap.headMap(Object)
tailMap
public Int2ReferenceSortedMap tailMap(int fromKey)
- See Also:
SortedMap.tailMap(Object)
firstIntKey
public int firstIntKey()
- See Also:
SortedMap.firstKey()
lastIntKey
public int lastIntKey()
- See Also:
SortedMap.lastKey()