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