| Package | Description |
|---|---|
| it.unimi.dsi.fastutil.shorts |
Provides type-specific classes for short elements or keys.
|
| Modifier and Type | Class and Description |
|---|---|
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.
|
| Modifier and Type | Field and Description |
|---|---|
protected Short2ShortSortedMap |
Short2ShortSortedMaps.SynchronizedSortedMap.sortedMap |
protected Short2ShortSortedMap |
Short2ShortSortedMaps.UnmodifiableSortedMap.sortedMap |
| Modifier and Type | Method and Description |
|---|---|
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 |
Short2ShortLinkedOpenHashMap.headMap(short to)
Returns a view of the portion of this sorted map whose keys are strictly less than
toKey. |
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 |
Short2ShortSortedMaps.EmptySortedMap.headMap(Short oto)
Deprecated.
Please use the corresponding type-specific method instead.
|
Short2ShortSortedMap |
Short2ShortSortedMaps.Singleton.headMap(Short oto)
Deprecated.
Please use the corresponding type-specific method instead.
|
Short2ShortSortedMap |
Short2ShortSortedMaps.SynchronizedSortedMap.headMap(Short to)
Deprecated.
Please use the corresponding type-specific method instead.
|
Short2ShortSortedMap |
Short2ShortSortedMaps.UnmodifiableSortedMap.headMap(Short to)
Deprecated.
Please use the corresponding type-specific method instead.
|
default Short2ShortSortedMap |
Short2ShortSortedMap.headMap(Short to)
Deprecated.
Please use the corresponding type-specific method instead.
|
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 |
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 |
Short2ShortLinkedOpenHashMap.subMap(short from,
short to)
Returns a view of the portion of this sorted map whose keys range from
fromKey, inclusive, to toKey, exclusive. |
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 |
Short2ShortSortedMaps.EmptySortedMap.subMap(Short ofrom,
Short oto)
Deprecated.
Please use the corresponding type-specific method instead.
|
Short2ShortSortedMap |
Short2ShortSortedMaps.Singleton.subMap(Short ofrom,
Short oto)
Deprecated.
Please use the corresponding type-specific method instead.
|
Short2ShortSortedMap |
Short2ShortSortedMaps.SynchronizedSortedMap.subMap(Short from,
Short to)
Deprecated.
Please use the corresponding type-specific method instead.
|
Short2ShortSortedMap |
Short2ShortSortedMaps.UnmodifiableSortedMap.subMap(Short from,
Short to)
Deprecated.
Please use the corresponding type-specific method instead.
|
default Short2ShortSortedMap |
Short2ShortSortedMap.subMap(Short from,
Short to)
Deprecated.
Please use the corresponding type-specific method instead.
|
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 |
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 |
Short2ShortLinkedOpenHashMap.tailMap(short from)
Returns a view of the portion of this sorted map whose keys are greater than or equal to
fromKey. |
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 |
Short2ShortSortedMaps.EmptySortedMap.tailMap(Short ofrom)
Deprecated.
Please use the corresponding type-specific method instead.
|
Short2ShortSortedMap |
Short2ShortSortedMaps.Singleton.tailMap(Short ofrom)
Deprecated.
Please use the corresponding type-specific method instead.
|
Short2ShortSortedMap |
Short2ShortSortedMaps.SynchronizedSortedMap.tailMap(Short from)
Deprecated.
Please use the corresponding type-specific method instead.
|
Short2ShortSortedMap |
Short2ShortSortedMaps.UnmodifiableSortedMap.tailMap(Short from)
Deprecated.
Please use the corresponding type-specific method instead.
|
default Short2ShortSortedMap |
Short2ShortSortedMap.tailMap(Short from)
Deprecated.
Please use the corresponding type-specific method instead.
|
static Short2ShortSortedMap |
Short2ShortSortedMaps.unmodifiable(Short2ShortSortedMap m)
Returns an unmodifiable type-specific sorted map backed by the given type-specific sorted map.
|
| Modifier and Type | Method and Description |
|---|---|
static ObjectBidirectionalIterable<Short2ShortMap.Entry> |
Short2ShortSortedMaps.fastIterable(Short2ShortSortedMap map)
|
static ObjectBidirectionalIterator<Short2ShortMap.Entry> |
Short2ShortSortedMaps.fastIterator(Short2ShortSortedMap map)
|
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.
|
| Constructor and Description |
|---|
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). |
SynchronizedSortedMap(Short2ShortSortedMap m) |
SynchronizedSortedMap(Short2ShortSortedMap m,
Object sync) |
UnmodifiableSortedMap(Short2ShortSortedMap m) |
Copyright © 2020. All rights reserved.