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