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