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