|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Float2LongSortedMap | |
---|---|
it.unimi.dsi.fastutil.floats | Provides type-specific classes for float elements or keys. |
Uses of Float2LongSortedMap in it.unimi.dsi.fastutil.floats |
---|
Classes in it.unimi.dsi.fastutil.floats that implement Float2LongSortedMap | |
---|---|
class |
AbstractFloat2LongSortedMap
An abstract class providing basic methods for sorted maps implementing a type-specific interface. |
class |
Float2LongAVLTreeMap
A type-specific AVL tree map with a fast, small-footprint implementation. |
class |
Float2LongLinkedOpenHashMap
A type-specific linked hash map with with a fast, small-footprint implementation. |
class |
Float2LongRBTreeMap
A type-specific red-black tree map with a fast, small-footprint implementation. |
static class |
Float2LongSortedMaps.EmptySortedMap
An immutable class representing an empty type-specific sorted map. |
static class |
Float2LongSortedMaps.Singleton
An immutable class representing a type-specific singleton sorted map. |
static class |
Float2LongSortedMaps.SynchronizedSortedMap
A synchronized wrapper class for sorted maps. |
static class |
Float2LongSortedMaps.UnmodifiableSortedMap
An unmodifiable wrapper class for sorted maps. |
Fields in it.unimi.dsi.fastutil.floats declared as Float2LongSortedMap | |
---|---|
protected Float2LongSortedMap |
Float2LongSortedMaps.SynchronizedSortedMap.sortedMap
|
protected Float2LongSortedMap |
Float2LongSortedMaps.UnmodifiableSortedMap.sortedMap
|
Methods in it.unimi.dsi.fastutil.floats that return Float2LongSortedMap | |
---|---|
Float2LongSortedMap |
Float2LongSortedMaps.EmptySortedMap.headMap(float to)
|
Float2LongSortedMap |
Float2LongSortedMaps.Singleton.headMap(float to)
|
Float2LongSortedMap |
Float2LongSortedMaps.SynchronizedSortedMap.headMap(float to)
|
Float2LongSortedMap |
Float2LongSortedMaps.UnmodifiableSortedMap.headMap(float to)
|
Float2LongSortedMap |
Float2LongLinkedOpenHashMap.headMap(float to)
|
Float2LongSortedMap |
Float2LongAVLTreeMap.headMap(float to)
|
Float2LongSortedMap |
Float2LongSortedMap.headMap(float toKey)
Returns a view of the portion of this sorted map whose keys are strictly less than toKey . |
Float2LongSortedMap |
Float2LongRBTreeMap.headMap(float to)
|
Float2LongSortedMap |
Float2LongSortedMaps.EmptySortedMap.headMap(Float oto)
|
Float2LongSortedMap |
Float2LongSortedMaps.Singleton.headMap(Float oto)
|
Float2LongSortedMap |
Float2LongSortedMaps.SynchronizedSortedMap.headMap(Float to)
|
Float2LongSortedMap |
Float2LongSortedMaps.UnmodifiableSortedMap.headMap(Float to)
|
Float2LongSortedMap |
AbstractFloat2LongSortedMap.headMap(Float to)
Delegates to the corresponding type-specific method. |
Float2LongSortedMap |
Float2LongSortedMap.headMap(Float toKey)
Returns a view of the portion of this sorted map whose keys are strictly less than toKey . |
static Float2LongSortedMap |
Float2LongSortedMaps.singleton(float key,
long value)
Returns a type-specific immutable sorted map containing only the specified pair. |
static Float2LongSortedMap |
Float2LongSortedMaps.singleton(Float key,
Long value)
Returns a type-specific immutable sorted map containing only the specified pair. |
static Float2LongSortedMap |
Float2LongSortedMaps.singleton(float key,
long value,
FloatComparator comparator)
Returns a type-specific immutable sorted map containing only the specified pair. |
static Float2LongSortedMap |
Float2LongSortedMaps.singleton(Float key,
Long value,
FloatComparator comparator)
RETURNS a type-specific immutable sorted map containing only the specified pair. |
Float2LongSortedMap |
Float2LongSortedMaps.EmptySortedMap.subMap(float from,
float to)
|
Float2LongSortedMap |
Float2LongSortedMaps.Singleton.subMap(float from,
float to)
|
Float2LongSortedMap |
Float2LongSortedMaps.SynchronizedSortedMap.subMap(float from,
float to)
|
Float2LongSortedMap |
Float2LongSortedMaps.UnmodifiableSortedMap.subMap(float from,
float to)
|
Float2LongSortedMap |
Float2LongLinkedOpenHashMap.subMap(float from,
float to)
|
Float2LongSortedMap |
Float2LongAVLTreeMap.subMap(float from,
float to)
|
Float2LongSortedMap |
Float2LongSortedMap.subMap(float fromKey,
float toKey)
Returns a view of the portion of this sorted map whose keys range from fromKey , inclusive, to toKey , exclusive. |
Float2LongSortedMap |
Float2LongRBTreeMap.subMap(float from,
float to)
|
Float2LongSortedMap |
Float2LongSortedMaps.EmptySortedMap.subMap(Float ofrom,
Float oto)
|
Float2LongSortedMap |
Float2LongSortedMaps.Singleton.subMap(Float ofrom,
Float oto)
|
Float2LongSortedMap |
Float2LongSortedMaps.SynchronizedSortedMap.subMap(Float from,
Float to)
|
Float2LongSortedMap |
Float2LongSortedMaps.UnmodifiableSortedMap.subMap(Float from,
Float to)
|
Float2LongSortedMap |
AbstractFloat2LongSortedMap.subMap(Float from,
Float to)
Delegates to the corresponding type-specific method. |
Float2LongSortedMap |
Float2LongSortedMap.subMap(Float fromKey,
Float toKey)
Returns a view of the portion of this sorted map whose keys range from fromKey , inclusive, to toKey , exclusive. |
static Float2LongSortedMap |
Float2LongSortedMaps.synchronize(Float2LongSortedMap m)
Returns a synchronized type-specific sorted map backed by the given type-specific sorted map. |
static Float2LongSortedMap |
Float2LongSortedMaps.synchronize(Float2LongSortedMap m,
Object sync)
Returns a synchronized type-specific sorted map backed by the given type-specific sorted map, using an assigned object to synchronize. |
Float2LongSortedMap |
Float2LongSortedMaps.EmptySortedMap.tailMap(float from)
|
Float2LongSortedMap |
Float2LongSortedMaps.Singleton.tailMap(float from)
|
Float2LongSortedMap |
Float2LongSortedMaps.SynchronizedSortedMap.tailMap(float from)
|
Float2LongSortedMap |
Float2LongSortedMaps.UnmodifiableSortedMap.tailMap(float from)
|
Float2LongSortedMap |
Float2LongLinkedOpenHashMap.tailMap(float from)
|
Float2LongSortedMap |
Float2LongAVLTreeMap.tailMap(float from)
|
Float2LongSortedMap |
Float2LongSortedMap.tailMap(float fromKey)
Returns a view of the portion of this sorted map whose keys are greater than or equal to fromKey . |
Float2LongSortedMap |
Float2LongRBTreeMap.tailMap(float from)
|
Float2LongSortedMap |
Float2LongSortedMaps.EmptySortedMap.tailMap(Float ofrom)
|
Float2LongSortedMap |
Float2LongSortedMaps.Singleton.tailMap(Float ofrom)
|
Float2LongSortedMap |
Float2LongSortedMaps.SynchronizedSortedMap.tailMap(Float from)
|
Float2LongSortedMap |
Float2LongSortedMaps.UnmodifiableSortedMap.tailMap(Float from)
|
Float2LongSortedMap |
AbstractFloat2LongSortedMap.tailMap(Float from)
Delegates to the corresponding type-specific method. |
Float2LongSortedMap |
Float2LongSortedMap.tailMap(Float fromKey)
Returns a view of the portion of this sorted map whose keys are greater than or equal to fromKey . |
static Float2LongSortedMap |
Float2LongSortedMaps.unmodifiable(Float2LongSortedMap m)
Returns an unmodifiable type-specific sorted map backed by the given type-specific sorted map. |
Methods in it.unimi.dsi.fastutil.floats with parameters of type Float2LongSortedMap | |
---|---|
static Float2LongSortedMap |
Float2LongSortedMaps.synchronize(Float2LongSortedMap m)
Returns a synchronized type-specific sorted map backed by the given type-specific sorted map. |
static Float2LongSortedMap |
Float2LongSortedMaps.synchronize(Float2LongSortedMap 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 Float2LongSortedMap |
Float2LongSortedMaps.unmodifiable(Float2LongSortedMap m)
Returns an unmodifiable type-specific sorted map backed by the given type-specific sorted map. |
Constructors in it.unimi.dsi.fastutil.floats with parameters of type Float2LongSortedMap | |
---|---|
Float2LongAVLTreeMap(Float2LongSortedMap m)
Creates a new tree map copying a given sorted map (and its Comparator ). |
|
Float2LongRBTreeMap(Float2LongSortedMap m)
Creates a new tree map copying a given sorted map (and its Comparator ). |
|
Float2LongSortedMaps.SynchronizedSortedMap(Float2LongSortedMap m)
|
|
Float2LongSortedMaps.SynchronizedSortedMap(Float2LongSortedMap m,
Object sync)
|
|
Float2LongSortedMaps.UnmodifiableSortedMap(Float2LongSortedMap m)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |