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