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