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