Uses of Interface
it.unimi.dsi.fastutil.doubles.Double2LongSortedMap

Packages that use Double2LongSortedMap
it.unimi.dsi.fastutil.doubles Provides type-specific classes for double elements or keys. 
 

Uses of Double2LongSortedMap in it.unimi.dsi.fastutil.doubles
 

Classes in it.unimi.dsi.fastutil.doubles that implement Double2LongSortedMap
 class AbstractDouble2LongSortedMap
          An abstract class providing basic methods for sorted maps implementing a type-specific interface.
 class Double2LongAVLTreeMap
          A type-specific AVL tree map with a fast, small-footprint implementation.
 class Double2LongLinkedOpenHashMap
          A type-specific linked hash map with with a fast, small-footprint implementation.
 class Double2LongRBTreeMap
          A type-specific red-black tree map with a fast, small-footprint implementation.
static class Double2LongSortedMaps.EmptySortedMap
          An immutable class representing an empty type-specific sorted map.
static class Double2LongSortedMaps.Singleton
          An immutable class representing a type-specific singleton sorted map.
static class Double2LongSortedMaps.SynchronizedSortedMap
          A synchronized wrapper class for sorted maps.
static class Double2LongSortedMaps.UnmodifiableSortedMap
          An unmodifiable wrapper class for sorted maps.
 

Fields in it.unimi.dsi.fastutil.doubles declared as Double2LongSortedMap
protected  Double2LongSortedMap Double2LongSortedMaps.SynchronizedSortedMap.sortedMap
           
protected  Double2LongSortedMap Double2LongSortedMaps.UnmodifiableSortedMap.sortedMap
           
 

Methods in it.unimi.dsi.fastutil.doubles that return Double2LongSortedMap
 Double2LongSortedMap Double2LongSortedMap.headMap(double toKey)
          Returns a view of the portion of this sorted map whose keys are strictly less than toKey.
 Double2LongSortedMap Double2LongAVLTreeMap.headMap(double to)
           
 Double2LongSortedMap Double2LongLinkedOpenHashMap.headMap(double to)
           
 Double2LongSortedMap Double2LongRBTreeMap.headMap(double to)
           
 Double2LongSortedMap Double2LongSortedMaps.EmptySortedMap.headMap(double to)
           
 Double2LongSortedMap Double2LongSortedMaps.Singleton.headMap(double to)
           
 Double2LongSortedMap Double2LongSortedMaps.SynchronizedSortedMap.headMap(double to)
           
 Double2LongSortedMap Double2LongSortedMaps.UnmodifiableSortedMap.headMap(double to)
           
 Double2LongSortedMap AbstractDouble2LongSortedMap.headMap(Double to)
          Delegates to the corresponding type-specific method.
 Double2LongSortedMap Double2LongSortedMap.headMap(Double toKey)
          Returns a view of the portion of this sorted map whose keys are strictly less than toKey.
 Double2LongSortedMap Double2LongSortedMaps.EmptySortedMap.headMap(Double oto)
           
 Double2LongSortedMap Double2LongSortedMaps.Singleton.headMap(Double oto)
           
 Double2LongSortedMap Double2LongSortedMaps.SynchronizedSortedMap.headMap(Double to)
           
 Double2LongSortedMap Double2LongSortedMaps.UnmodifiableSortedMap.headMap(Double to)
           
static Double2LongSortedMap Double2LongSortedMaps.singleton(double key, long value)
          Returns a type-specific immutable sorted map containing only the specified pair.
static Double2LongSortedMap Double2LongSortedMaps.singleton(Double key, Long value)
          Returns a type-specific immutable sorted map containing only the specified pair.
static Double2LongSortedMap Double2LongSortedMaps.singleton(double key, long value, DoubleComparator comparator)
          Returns a type-specific immutable sorted map containing only the specified pair.
static Double2LongSortedMap Double2LongSortedMaps.singleton(Double key, Long value, DoubleComparator comparator)
          RETURNS a type-specific immutable sorted map containing only the specified pair.
 Double2LongSortedMap Double2LongSortedMap.subMap(double fromKey, double toKey)
          Returns a view of the portion of this sorted map whose keys range from fromKey, inclusive, to toKey, exclusive.
 Double2LongSortedMap Double2LongAVLTreeMap.subMap(double from, double to)
           
 Double2LongSortedMap Double2LongLinkedOpenHashMap.subMap(double from, double to)
           
 Double2LongSortedMap Double2LongRBTreeMap.subMap(double from, double to)
           
 Double2LongSortedMap Double2LongSortedMaps.EmptySortedMap.subMap(double from, double to)
           
 Double2LongSortedMap Double2LongSortedMaps.Singleton.subMap(double from, double to)
           
 Double2LongSortedMap Double2LongSortedMaps.SynchronizedSortedMap.subMap(double from, double to)
           
 Double2LongSortedMap Double2LongSortedMaps.UnmodifiableSortedMap.subMap(double from, double to)
           
 Double2LongSortedMap AbstractDouble2LongSortedMap.subMap(Double from, Double to)
          Delegates to the corresponding type-specific method.
 Double2LongSortedMap Double2LongSortedMap.subMap(Double fromKey, Double toKey)
          Returns a view of the portion of this sorted map whose keys range from fromKey, inclusive, to toKey, exclusive.
 Double2LongSortedMap Double2LongSortedMaps.EmptySortedMap.subMap(Double ofrom, Double oto)
           
 Double2LongSortedMap Double2LongSortedMaps.Singleton.subMap(Double ofrom, Double oto)
           
 Double2LongSortedMap Double2LongSortedMaps.SynchronizedSortedMap.subMap(Double from, Double to)
           
 Double2LongSortedMap Double2LongSortedMaps.UnmodifiableSortedMap.subMap(Double from, Double to)
           
static Double2LongSortedMap Double2LongSortedMaps.synchronize(Double2LongSortedMap m)
          Returns a synchronized type-specific sorted map backed by the given type-specific sorted map.
static Double2LongSortedMap Double2LongSortedMaps.synchronize(Double2LongSortedMap m, Object sync)
          Returns a synchronized type-specific sorted map backed by the given type-specific sorted map, using an assigned object to synchronize.
 Double2LongSortedMap Double2LongSortedMap.tailMap(double fromKey)
          Returns a view of the portion of this sorted map whose keys are greater than or equal to fromKey.
 Double2LongSortedMap Double2LongAVLTreeMap.tailMap(double from)
           
 Double2LongSortedMap Double2LongLinkedOpenHashMap.tailMap(double from)
           
 Double2LongSortedMap Double2LongRBTreeMap.tailMap(double from)
           
 Double2LongSortedMap Double2LongSortedMaps.EmptySortedMap.tailMap(double from)
           
 Double2LongSortedMap Double2LongSortedMaps.Singleton.tailMap(double from)
           
 Double2LongSortedMap Double2LongSortedMaps.SynchronizedSortedMap.tailMap(double from)
           
 Double2LongSortedMap Double2LongSortedMaps.UnmodifiableSortedMap.tailMap(double from)
           
 Double2LongSortedMap AbstractDouble2LongSortedMap.tailMap(Double from)
          Delegates to the corresponding type-specific method.
 Double2LongSortedMap Double2LongSortedMap.tailMap(Double fromKey)
          Returns a view of the portion of this sorted map whose keys are greater than or equal to fromKey.
 Double2LongSortedMap Double2LongSortedMaps.EmptySortedMap.tailMap(Double ofrom)
           
 Double2LongSortedMap Double2LongSortedMaps.Singleton.tailMap(Double ofrom)
           
 Double2LongSortedMap Double2LongSortedMaps.SynchronizedSortedMap.tailMap(Double from)
           
 Double2LongSortedMap Double2LongSortedMaps.UnmodifiableSortedMap.tailMap(Double from)
           
static Double2LongSortedMap Double2LongSortedMaps.unmodifiable(Double2LongSortedMap m)
          Returns an unmodifiable type-specific sorted map backed by the given type-specific sorted map.
 

Methods in it.unimi.dsi.fastutil.doubles with parameters of type Double2LongSortedMap
static Double2LongSortedMap Double2LongSortedMaps.synchronize(Double2LongSortedMap m)
          Returns a synchronized type-specific sorted map backed by the given type-specific sorted map.
static Double2LongSortedMap Double2LongSortedMaps.synchronize(Double2LongSortedMap 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 Double2LongSortedMap Double2LongSortedMaps.unmodifiable(Double2LongSortedMap m)
          Returns an unmodifiable type-specific sorted map backed by the given type-specific sorted map.
 

Constructors in it.unimi.dsi.fastutil.doubles with parameters of type Double2LongSortedMap
Double2LongAVLTreeMap(Double2LongSortedMap m)
          Creates a new tree map copying a given sorted map (and its Comparator).
Double2LongRBTreeMap(Double2LongSortedMap m)
          Creates a new tree map copying a given sorted map (and its Comparator).
Double2LongSortedMaps.SynchronizedSortedMap(Double2LongSortedMap m)
           
Double2LongSortedMaps.SynchronizedSortedMap(Double2LongSortedMap m, Object sync)
           
Double2LongSortedMaps.UnmodifiableSortedMap(Double2LongSortedMap m)
           
 



Copyright © 2011. All Rights Reserved.