|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Int2ShortSortedMap | |
---|---|
it.unimi.dsi.fastutil.ints | Provides type-specific classes for integer elements or keys. |
Uses of Int2ShortSortedMap in it.unimi.dsi.fastutil.ints |
---|
Classes in it.unimi.dsi.fastutil.ints that implement Int2ShortSortedMap | |
---|---|
class |
AbstractInt2ShortSortedMap
An abstract class providing basic methods for sorted maps implementing a type-specific interface. |
class |
Int2ShortAVLTreeMap
A type-specific AVL tree map with a fast, small-footprint implementation. |
class |
Int2ShortLinkedOpenHashMap
A type-specific linked hash map with with a fast, small-footprint implementation. |
class |
Int2ShortRBTreeMap
A type-specific red-black tree map with a fast, small-footprint implementation. |
static class |
Int2ShortSortedMaps.EmptySortedMap
An immutable class representing an empty type-specific sorted map. |
static class |
Int2ShortSortedMaps.Singleton
An immutable class representing a type-specific singleton sorted map. |
static class |
Int2ShortSortedMaps.SynchronizedSortedMap
A synchronized wrapper class for sorted maps. |
static class |
Int2ShortSortedMaps.UnmodifiableSortedMap
An unmodifiable wrapper class for sorted maps. |
Fields in it.unimi.dsi.fastutil.ints declared as Int2ShortSortedMap | |
---|---|
protected Int2ShortSortedMap |
Int2ShortSortedMaps.SynchronizedSortedMap.sortedMap
|
protected Int2ShortSortedMap |
Int2ShortSortedMaps.UnmodifiableSortedMap.sortedMap
|
Methods in it.unimi.dsi.fastutil.ints that return Int2ShortSortedMap | |
---|---|
Int2ShortSortedMap |
Int2ShortAVLTreeMap.headMap(int to)
|
Int2ShortSortedMap |
Int2ShortLinkedOpenHashMap.headMap(int to)
|
Int2ShortSortedMap |
Int2ShortRBTreeMap.headMap(int to)
|
Int2ShortSortedMap |
Int2ShortSortedMaps.EmptySortedMap.headMap(int to)
|
Int2ShortSortedMap |
Int2ShortSortedMaps.Singleton.headMap(int to)
|
Int2ShortSortedMap |
Int2ShortSortedMaps.SynchronizedSortedMap.headMap(int to)
|
Int2ShortSortedMap |
Int2ShortSortedMaps.UnmodifiableSortedMap.headMap(int to)
|
Int2ShortSortedMap |
Int2ShortSortedMap.headMap(int toKey)
Returns a view of the portion of this sorted map whose keys are strictly less than toKey . |
Int2ShortSortedMap |
AbstractInt2ShortSortedMap.headMap(Integer to)
Delegates to the corresponding type-specific method. |
Int2ShortSortedMap |
Int2ShortSortedMaps.EmptySortedMap.headMap(Integer oto)
|
Int2ShortSortedMap |
Int2ShortSortedMaps.Singleton.headMap(Integer oto)
|
Int2ShortSortedMap |
Int2ShortSortedMaps.SynchronizedSortedMap.headMap(Integer to)
|
Int2ShortSortedMap |
Int2ShortSortedMaps.UnmodifiableSortedMap.headMap(Integer to)
|
Int2ShortSortedMap |
Int2ShortSortedMap.headMap(Integer toKey)
Returns a view of the portion of this sorted map whose keys are strictly less than toKey . |
static Int2ShortSortedMap |
Int2ShortSortedMaps.singleton(Integer key,
Short value)
Returns a type-specific immutable sorted map containing only the specified pair. |
static Int2ShortSortedMap |
Int2ShortSortedMaps.singleton(Integer key,
Short value,
IntComparator comparator)
RETURNS a type-specific immutable sorted map containing only the specified pair. |
static Int2ShortSortedMap |
Int2ShortSortedMaps.singleton(int key,
short value)
Returns a type-specific immutable sorted map containing only the specified pair. |
static Int2ShortSortedMap |
Int2ShortSortedMaps.singleton(int key,
short value,
IntComparator comparator)
Returns a type-specific immutable sorted map containing only the specified pair. |
Int2ShortSortedMap |
AbstractInt2ShortSortedMap.subMap(Integer from,
Integer to)
Delegates to the corresponding type-specific method. |
Int2ShortSortedMap |
Int2ShortSortedMaps.EmptySortedMap.subMap(Integer ofrom,
Integer oto)
|
Int2ShortSortedMap |
Int2ShortSortedMaps.Singleton.subMap(Integer ofrom,
Integer oto)
|
Int2ShortSortedMap |
Int2ShortSortedMaps.SynchronizedSortedMap.subMap(Integer from,
Integer to)
|
Int2ShortSortedMap |
Int2ShortSortedMaps.UnmodifiableSortedMap.subMap(Integer from,
Integer to)
|
Int2ShortSortedMap |
Int2ShortSortedMap.subMap(Integer fromKey,
Integer toKey)
Returns a view of the portion of this sorted map whose keys range from fromKey , inclusive, to toKey , exclusive. |
Int2ShortSortedMap |
Int2ShortAVLTreeMap.subMap(int from,
int to)
|
Int2ShortSortedMap |
Int2ShortLinkedOpenHashMap.subMap(int from,
int to)
|
Int2ShortSortedMap |
Int2ShortRBTreeMap.subMap(int from,
int to)
|
Int2ShortSortedMap |
Int2ShortSortedMaps.EmptySortedMap.subMap(int from,
int to)
|
Int2ShortSortedMap |
Int2ShortSortedMaps.Singleton.subMap(int from,
int to)
|
Int2ShortSortedMap |
Int2ShortSortedMaps.SynchronizedSortedMap.subMap(int from,
int to)
|
Int2ShortSortedMap |
Int2ShortSortedMaps.UnmodifiableSortedMap.subMap(int from,
int to)
|
Int2ShortSortedMap |
Int2ShortSortedMap.subMap(int fromKey,
int toKey)
Returns a view of the portion of this sorted map whose keys range from fromKey , inclusive, to toKey , exclusive. |
static Int2ShortSortedMap |
Int2ShortSortedMaps.synchronize(Int2ShortSortedMap m)
Returns a synchronized type-specific sorted map backed by the given type-specific sorted map. |
static Int2ShortSortedMap |
Int2ShortSortedMaps.synchronize(Int2ShortSortedMap m,
Object sync)
Returns a synchronized type-specific sorted map backed by the given type-specific sorted map, using an assigned object to synchronize. |
Int2ShortSortedMap |
Int2ShortAVLTreeMap.tailMap(int from)
|
Int2ShortSortedMap |
Int2ShortLinkedOpenHashMap.tailMap(int from)
|
Int2ShortSortedMap |
Int2ShortRBTreeMap.tailMap(int from)
|
Int2ShortSortedMap |
Int2ShortSortedMaps.EmptySortedMap.tailMap(int from)
|
Int2ShortSortedMap |
Int2ShortSortedMaps.Singleton.tailMap(int from)
|
Int2ShortSortedMap |
Int2ShortSortedMaps.SynchronizedSortedMap.tailMap(int from)
|
Int2ShortSortedMap |
Int2ShortSortedMaps.UnmodifiableSortedMap.tailMap(int from)
|
Int2ShortSortedMap |
Int2ShortSortedMap.tailMap(int fromKey)
Returns a view of the portion of this sorted map whose keys are greater than or equal to fromKey . |
Int2ShortSortedMap |
AbstractInt2ShortSortedMap.tailMap(Integer from)
Delegates to the corresponding type-specific method. |
Int2ShortSortedMap |
Int2ShortSortedMaps.EmptySortedMap.tailMap(Integer ofrom)
|
Int2ShortSortedMap |
Int2ShortSortedMaps.Singleton.tailMap(Integer ofrom)
|
Int2ShortSortedMap |
Int2ShortSortedMaps.SynchronizedSortedMap.tailMap(Integer from)
|
Int2ShortSortedMap |
Int2ShortSortedMaps.UnmodifiableSortedMap.tailMap(Integer from)
|
Int2ShortSortedMap |
Int2ShortSortedMap.tailMap(Integer fromKey)
Returns a view of the portion of this sorted map whose keys are greater than or equal to fromKey . |
static Int2ShortSortedMap |
Int2ShortSortedMaps.unmodifiable(Int2ShortSortedMap m)
Returns an unmodifiable type-specific sorted map backed by the given type-specific sorted map. |
Methods in it.unimi.dsi.fastutil.ints with parameters of type Int2ShortSortedMap | |
---|---|
static Int2ShortSortedMap |
Int2ShortSortedMaps.synchronize(Int2ShortSortedMap m)
Returns a synchronized type-specific sorted map backed by the given type-specific sorted map. |
static Int2ShortSortedMap |
Int2ShortSortedMaps.synchronize(Int2ShortSortedMap m,
Object sync)
Returns a synchronized type-specific sorted map backed by the given type-specific sorted map, using an assigned object to synchronize. |
static Int2ShortSortedMap |
Int2ShortSortedMaps.unmodifiable(Int2ShortSortedMap m)
Returns an unmodifiable type-specific sorted map backed by the given type-specific sorted map. |
Constructors in it.unimi.dsi.fastutil.ints with parameters of type Int2ShortSortedMap | |
---|---|
Int2ShortAVLTreeMap(Int2ShortSortedMap m)
Creates a new tree map copying a given sorted map (and its Comparator ). |
|
Int2ShortRBTreeMap(Int2ShortSortedMap m)
Creates a new tree map copying a given sorted map (and its Comparator ). |
|
Int2ShortSortedMaps.SynchronizedSortedMap(Int2ShortSortedMap m)
|
|
Int2ShortSortedMaps.SynchronizedSortedMap(Int2ShortSortedMap m,
Object sync)
|
|
Int2ShortSortedMaps.UnmodifiableSortedMap(Int2ShortSortedMap m)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |