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