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