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

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

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

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

Fields in it.unimi.dsi.fastutil.doubles declared as Double2IntSortedMap
protected  Double2IntSortedMap Double2IntSortedMaps.SynchronizedSortedMap.sortedMap
           
protected  Double2IntSortedMap Double2IntSortedMaps.UnmodifiableSortedMap.sortedMap
           
 

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



Copyright © 2011. All Rights Reserved.