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