Uses of Interface
it.unimi.dsi.fastutil.floats.Float2DoubleSortedMap

Packages that use Float2DoubleSortedMap
it.unimi.dsi.fastutil.floats Provides type-specific classes for float elements or keys. 
 

Uses of Float2DoubleSortedMap in it.unimi.dsi.fastutil.floats
 

Classes in it.unimi.dsi.fastutil.floats that implement Float2DoubleSortedMap
 class AbstractFloat2DoubleSortedMap
          An abstract class providing basic methods for sorted maps implementing a type-specific interface.
 class Float2DoubleAVLTreeMap
          A type-specific AVL tree map with a fast, small-footprint implementation.
 class Float2DoubleLinkedOpenHashMap
          A type-specific linked hash map with with a fast, small-footprint implementation.
 class Float2DoubleRBTreeMap
          A type-specific red-black tree map with a fast, small-footprint implementation.
static class Float2DoubleSortedMaps.EmptySortedMap
          An immutable class representing an empty type-specific sorted map.
static class Float2DoubleSortedMaps.Singleton
          An immutable class representing a type-specific singleton sorted map.
static class Float2DoubleSortedMaps.SynchronizedSortedMap
          A synchronized wrapper class for sorted maps.
static class Float2DoubleSortedMaps.UnmodifiableSortedMap
          An unmodifiable wrapper class for sorted maps.
 

Fields in it.unimi.dsi.fastutil.floats declared as Float2DoubleSortedMap
protected  Float2DoubleSortedMap Float2DoubleSortedMaps.SynchronizedSortedMap.sortedMap
           
protected  Float2DoubleSortedMap Float2DoubleSortedMaps.UnmodifiableSortedMap.sortedMap
           
 

Methods in it.unimi.dsi.fastutil.floats that return Float2DoubleSortedMap
 Float2DoubleSortedMap Float2DoubleAVLTreeMap.headMap(float to)
           
 Float2DoubleSortedMap Float2DoubleRBTreeMap.headMap(float to)
           
 Float2DoubleSortedMap Float2DoubleSortedMap.headMap(float toKey)
          Returns a view of the portion of this sorted map whose keys are strictly less than toKey.
 Float2DoubleSortedMap Float2DoubleSortedMaps.EmptySortedMap.headMap(float to)
           
 Float2DoubleSortedMap Float2DoubleSortedMaps.Singleton.headMap(float to)
           
 Float2DoubleSortedMap Float2DoubleSortedMaps.SynchronizedSortedMap.headMap(float to)
           
 Float2DoubleSortedMap Float2DoubleSortedMaps.UnmodifiableSortedMap.headMap(float to)
           
 Float2DoubleSortedMap Float2DoubleLinkedOpenHashMap.headMap(float to)
           
 Float2DoubleSortedMap AbstractFloat2DoubleSortedMap.headMap(Float to)
          Delegates to the corresponding type-specific method.
 Float2DoubleSortedMap Float2DoubleSortedMap.headMap(Float toKey)
          Returns a view of the portion of this sorted map whose keys are strictly less than toKey.
 Float2DoubleSortedMap Float2DoubleSortedMaps.EmptySortedMap.headMap(Float oto)
           
 Float2DoubleSortedMap Float2DoubleSortedMaps.Singleton.headMap(Float oto)
           
 Float2DoubleSortedMap Float2DoubleSortedMaps.SynchronizedSortedMap.headMap(Float to)
           
 Float2DoubleSortedMap Float2DoubleSortedMaps.UnmodifiableSortedMap.headMap(Float to)
           
static Float2DoubleSortedMap Float2DoubleSortedMaps.singleton(float key, double value)
          Returns a type-specific immutable sorted map containing only the specified pair.
static Float2DoubleSortedMap Float2DoubleSortedMaps.singleton(Float key, Double value)
          Returns a type-specific immutable sorted map containing only the specified pair.
static Float2DoubleSortedMap Float2DoubleSortedMaps.singleton(float key, double value, FloatComparator comparator)
          Returns a type-specific immutable sorted map containing only the specified pair.
static Float2DoubleSortedMap Float2DoubleSortedMaps.singleton(Float key, Double value, FloatComparator comparator)
          RETURNS a type-specific immutable sorted map containing only the specified pair.
 Float2DoubleSortedMap Float2DoubleAVLTreeMap.subMap(float from, float to)
           
 Float2DoubleSortedMap Float2DoubleRBTreeMap.subMap(float from, float to)
           
 Float2DoubleSortedMap Float2DoubleSortedMap.subMap(float fromKey, float toKey)
          Returns a view of the portion of this sorted map whose keys range from fromKey, inclusive, to toKey, exclusive.
 Float2DoubleSortedMap Float2DoubleSortedMaps.EmptySortedMap.subMap(float from, float to)
           
 Float2DoubleSortedMap Float2DoubleSortedMaps.Singleton.subMap(float from, float to)
           
 Float2DoubleSortedMap Float2DoubleSortedMaps.SynchronizedSortedMap.subMap(float from, float to)
           
 Float2DoubleSortedMap Float2DoubleSortedMaps.UnmodifiableSortedMap.subMap(float from, float to)
           
 Float2DoubleSortedMap Float2DoubleLinkedOpenHashMap.subMap(float from, float to)
           
 Float2DoubleSortedMap AbstractFloat2DoubleSortedMap.subMap(Float from, Float to)
          Delegates to the corresponding type-specific method.
 Float2DoubleSortedMap Float2DoubleSortedMap.subMap(Float fromKey, Float toKey)
          Returns a view of the portion of this sorted map whose keys range from fromKey, inclusive, to toKey, exclusive.
 Float2DoubleSortedMap Float2DoubleSortedMaps.EmptySortedMap.subMap(Float ofrom, Float oto)
           
 Float2DoubleSortedMap Float2DoubleSortedMaps.Singleton.subMap(Float ofrom, Float oto)
           
 Float2DoubleSortedMap Float2DoubleSortedMaps.SynchronizedSortedMap.subMap(Float from, Float to)
           
 Float2DoubleSortedMap Float2DoubleSortedMaps.UnmodifiableSortedMap.subMap(Float from, Float to)
           
static Float2DoubleSortedMap Float2DoubleSortedMaps.synchronize(Float2DoubleSortedMap m)
          Returns a synchronized type-specific sorted map backed by the given type-specific sorted map.
static Float2DoubleSortedMap Float2DoubleSortedMaps.synchronize(Float2DoubleSortedMap m, Object sync)
          Returns a synchronized type-specific sorted map backed by the given type-specific sorted map, using an assigned object to synchronize.
 Float2DoubleSortedMap Float2DoubleAVLTreeMap.tailMap(float from)
           
 Float2DoubleSortedMap Float2DoubleRBTreeMap.tailMap(float from)
           
 Float2DoubleSortedMap Float2DoubleSortedMap.tailMap(float fromKey)
          Returns a view of the portion of this sorted map whose keys are greater than or equal to fromKey.
 Float2DoubleSortedMap Float2DoubleSortedMaps.EmptySortedMap.tailMap(float from)
           
 Float2DoubleSortedMap Float2DoubleSortedMaps.Singleton.tailMap(float from)
           
 Float2DoubleSortedMap Float2DoubleSortedMaps.SynchronizedSortedMap.tailMap(float from)
           
 Float2DoubleSortedMap Float2DoubleSortedMaps.UnmodifiableSortedMap.tailMap(float from)
           
 Float2DoubleSortedMap Float2DoubleLinkedOpenHashMap.tailMap(float from)
           
 Float2DoubleSortedMap AbstractFloat2DoubleSortedMap.tailMap(Float from)
          Delegates to the corresponding type-specific method.
 Float2DoubleSortedMap Float2DoubleSortedMap.tailMap(Float fromKey)
          Returns a view of the portion of this sorted map whose keys are greater than or equal to fromKey.
 Float2DoubleSortedMap Float2DoubleSortedMaps.EmptySortedMap.tailMap(Float ofrom)
           
 Float2DoubleSortedMap Float2DoubleSortedMaps.Singleton.tailMap(Float ofrom)
           
 Float2DoubleSortedMap Float2DoubleSortedMaps.SynchronizedSortedMap.tailMap(Float from)
           
 Float2DoubleSortedMap Float2DoubleSortedMaps.UnmodifiableSortedMap.tailMap(Float from)
           
static Float2DoubleSortedMap Float2DoubleSortedMaps.unmodifiable(Float2DoubleSortedMap 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 Float2DoubleSortedMap
static Float2DoubleSortedMap Float2DoubleSortedMaps.synchronize(Float2DoubleSortedMap m)
          Returns a synchronized type-specific sorted map backed by the given type-specific sorted map.
static Float2DoubleSortedMap Float2DoubleSortedMaps.synchronize(Float2DoubleSortedMap 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 Float2DoubleSortedMap Float2DoubleSortedMaps.unmodifiable(Float2DoubleSortedMap 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 Float2DoubleSortedMap
Float2DoubleAVLTreeMap(Float2DoubleSortedMap m)
          Creates a new tree map copying a given sorted map (and its Comparator).
Float2DoubleRBTreeMap(Float2DoubleSortedMap m)
          Creates a new tree map copying a given sorted map (and its Comparator).
Float2DoubleSortedMaps.SynchronizedSortedMap(Float2DoubleSortedMap m)
           
Float2DoubleSortedMaps.SynchronizedSortedMap(Float2DoubleSortedMap m, Object sync)
           
Float2DoubleSortedMaps.UnmodifiableSortedMap(Float2DoubleSortedMap m)
           
 



Copyright © 2011. All Rights Reserved.