| Package | Description |
|---|---|
| it.unimi.dsi.fastutil.shorts |
Provides type-specific classes for short elements or keys.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractShort2FloatSortedMap
An abstract class providing basic methods for sorted maps implementing a type-specific interface.
|
class |
Short2FloatAVLTreeMap
A type-specific AVL tree map with a fast, small-footprint implementation.
|
class |
Short2FloatLinkedOpenHashMap
A type-specific linked hash map with with a fast, small-footprint implementation.
|
class |
Short2FloatRBTreeMap
A type-specific red-black tree map with a fast, small-footprint implementation.
|
static class |
Short2FloatSortedMaps.EmptySortedMap
An immutable class representing an empty type-specific sorted map.
|
static class |
Short2FloatSortedMaps.Singleton
An immutable class representing a type-specific singleton sorted map.
|
static class |
Short2FloatSortedMaps.SynchronizedSortedMap
A synchronized wrapper class for sorted maps.
|
static class |
Short2FloatSortedMaps.UnmodifiableSortedMap
An unmodifiable wrapper class for sorted maps.
|
| Modifier and Type | Field and Description |
|---|---|
protected Short2FloatSortedMap |
Short2FloatSortedMaps.SynchronizedSortedMap.sortedMap |
protected Short2FloatSortedMap |
Short2FloatSortedMaps.UnmodifiableSortedMap.sortedMap |
| Modifier and Type | Method and Description |
|---|---|
Short2FloatSortedMap |
Short2FloatLinkedOpenHashMap.headMap(short to)
Returns a view of the portion of this sorted map whose keys are strictly less than
toKey. |
Short2FloatSortedMap |
Short2FloatSortedMap.headMap(short toKey)
Returns a view of the portion of this sorted map whose keys are strictly less than
toKey. |
Short2FloatSortedMap |
Short2FloatRBTreeMap.headMap(short to) |
Short2FloatSortedMap |
Short2FloatSortedMaps.EmptySortedMap.headMap(short to) |
Short2FloatSortedMap |
Short2FloatSortedMaps.Singleton.headMap(short to) |
Short2FloatSortedMap |
Short2FloatSortedMaps.SynchronizedSortedMap.headMap(short to) |
Short2FloatSortedMap |
Short2FloatSortedMaps.UnmodifiableSortedMap.headMap(short to) |
Short2FloatSortedMap |
Short2FloatAVLTreeMap.headMap(short to) |
default Short2FloatSortedMap |
Short2FloatSortedMap.headMap(Short to)
Deprecated.
Please use the corresponding type-specific method instead.
|
Short2FloatSortedMap |
Short2FloatSortedMaps.EmptySortedMap.headMap(Short oto)
Deprecated.
Please use the corresponding type-specific method instead.
|
Short2FloatSortedMap |
Short2FloatSortedMaps.Singleton.headMap(Short oto)
Deprecated.
Please use the corresponding type-specific method instead.
|
Short2FloatSortedMap |
Short2FloatSortedMaps.SynchronizedSortedMap.headMap(Short to)
Deprecated.
Please use the corresponding type-specific method instead.
|
Short2FloatSortedMap |
Short2FloatSortedMaps.UnmodifiableSortedMap.headMap(Short to)
Deprecated.
Please use the corresponding type-specific method instead.
|
static Short2FloatSortedMap |
Short2FloatSortedMaps.singleton(short key,
float value)
Returns a type-specific immutable sorted map containing only the specified pair.
|
static Short2FloatSortedMap |
Short2FloatSortedMaps.singleton(Short key,
Float value)
Returns a type-specific immutable sorted map containing only the specified pair.
|
static Short2FloatSortedMap |
Short2FloatSortedMaps.singleton(short key,
float value,
ShortComparator comparator)
Returns a type-specific immutable sorted map containing only the specified pair.
|
static Short2FloatSortedMap |
Short2FloatSortedMaps.singleton(Short key,
Float value,
ShortComparator comparator)
RETURNS a type-specific immutable sorted map containing only the specified pair.
|
Short2FloatSortedMap |
Short2FloatLinkedOpenHashMap.subMap(short from,
short to)
Returns a view of the portion of this sorted map whose keys range from
fromKey, inclusive, to toKey, exclusive. |
Short2FloatSortedMap |
Short2FloatSortedMap.subMap(short fromKey,
short toKey)
Returns a view of the portion of this sorted map whose keys range from
fromKey, inclusive, to toKey, exclusive. |
Short2FloatSortedMap |
Short2FloatRBTreeMap.subMap(short from,
short to) |
Short2FloatSortedMap |
Short2FloatSortedMaps.EmptySortedMap.subMap(short from,
short to) |
Short2FloatSortedMap |
Short2FloatSortedMaps.Singleton.subMap(short from,
short to) |
Short2FloatSortedMap |
Short2FloatSortedMaps.SynchronizedSortedMap.subMap(short from,
short to) |
Short2FloatSortedMap |
Short2FloatSortedMaps.UnmodifiableSortedMap.subMap(short from,
short to) |
Short2FloatSortedMap |
Short2FloatAVLTreeMap.subMap(short from,
short to) |
default Short2FloatSortedMap |
Short2FloatSortedMap.subMap(Short from,
Short to)
Deprecated.
Please use the corresponding type-specific method instead.
|
Short2FloatSortedMap |
Short2FloatSortedMaps.EmptySortedMap.subMap(Short ofrom,
Short oto)
Deprecated.
Please use the corresponding type-specific method instead.
|
Short2FloatSortedMap |
Short2FloatSortedMaps.Singleton.subMap(Short ofrom,
Short oto)
Deprecated.
Please use the corresponding type-specific method instead.
|
Short2FloatSortedMap |
Short2FloatSortedMaps.SynchronizedSortedMap.subMap(Short from,
Short to)
Deprecated.
Please use the corresponding type-specific method instead.
|
Short2FloatSortedMap |
Short2FloatSortedMaps.UnmodifiableSortedMap.subMap(Short from,
Short to)
Deprecated.
Please use the corresponding type-specific method instead.
|
static Short2FloatSortedMap |
Short2FloatSortedMaps.synchronize(Short2FloatSortedMap m)
Returns a synchronized type-specific sorted map backed by the given type-specific sorted map.
|
static Short2FloatSortedMap |
Short2FloatSortedMaps.synchronize(Short2FloatSortedMap m,
Object sync)
Returns a synchronized type-specific sorted map backed by the given type-specific sorted map, using an assigned object to synchronize.
|
Short2FloatSortedMap |
Short2FloatLinkedOpenHashMap.tailMap(short from)
Returns a view of the portion of this sorted map whose keys are greater than or equal to
fromKey. |
Short2FloatSortedMap |
Short2FloatSortedMap.tailMap(short fromKey)
Returns a view of the portion of this sorted map whose keys are greater than or equal to
fromKey. |
Short2FloatSortedMap |
Short2FloatRBTreeMap.tailMap(short from) |
Short2FloatSortedMap |
Short2FloatSortedMaps.EmptySortedMap.tailMap(short from) |
Short2FloatSortedMap |
Short2FloatSortedMaps.Singleton.tailMap(short from) |
Short2FloatSortedMap |
Short2FloatSortedMaps.SynchronizedSortedMap.tailMap(short from) |
Short2FloatSortedMap |
Short2FloatSortedMaps.UnmodifiableSortedMap.tailMap(short from) |
Short2FloatSortedMap |
Short2FloatAVLTreeMap.tailMap(short from) |
default Short2FloatSortedMap |
Short2FloatSortedMap.tailMap(Short from)
Deprecated.
Please use the corresponding type-specific method instead.
|
Short2FloatSortedMap |
Short2FloatSortedMaps.EmptySortedMap.tailMap(Short ofrom)
Deprecated.
Please use the corresponding type-specific method instead.
|
Short2FloatSortedMap |
Short2FloatSortedMaps.Singleton.tailMap(Short ofrom)
Deprecated.
Please use the corresponding type-specific method instead.
|
Short2FloatSortedMap |
Short2FloatSortedMaps.SynchronizedSortedMap.tailMap(Short from)
Deprecated.
Please use the corresponding type-specific method instead.
|
Short2FloatSortedMap |
Short2FloatSortedMaps.UnmodifiableSortedMap.tailMap(Short from)
Deprecated.
Please use the corresponding type-specific method instead.
|
static Short2FloatSortedMap |
Short2FloatSortedMaps.unmodifiable(Short2FloatSortedMap m)
Returns an unmodifiable type-specific sorted map backed by the given type-specific sorted map.
|
| Modifier and Type | Method and Description |
|---|---|
static ObjectBidirectionalIterable<Short2FloatMap.Entry> |
Short2FloatSortedMaps.fastIterable(Short2FloatSortedMap map)
|
static ObjectBidirectionalIterator<Short2FloatMap.Entry> |
Short2FloatSortedMaps.fastIterator(Short2FloatSortedMap map)
|
static Short2FloatSortedMap |
Short2FloatSortedMaps.synchronize(Short2FloatSortedMap m)
Returns a synchronized type-specific sorted map backed by the given type-specific sorted map.
|
static Short2FloatSortedMap |
Short2FloatSortedMaps.synchronize(Short2FloatSortedMap 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 Short2FloatSortedMap |
Short2FloatSortedMaps.unmodifiable(Short2FloatSortedMap m)
Returns an unmodifiable type-specific sorted map backed by the given type-specific sorted map.
|
| Constructor and Description |
|---|
Short2FloatAVLTreeMap(Short2FloatSortedMap m)
Creates a new tree map copying a given sorted map (and its
Comparator). |
Short2FloatRBTreeMap(Short2FloatSortedMap m)
Creates a new tree map copying a given sorted map (and its
Comparator). |
SynchronizedSortedMap(Short2FloatSortedMap m) |
SynchronizedSortedMap(Short2FloatSortedMap m,
Object sync) |
UnmodifiableSortedMap(Short2FloatSortedMap m) |
Copyright © 2020. All rights reserved.