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