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