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