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