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