Uses of Interface
it.unimi.dsi.fastutil.ints.Int2DoubleSortedMap

Packages that use Int2DoubleSortedMap
it.unimi.dsi.fastutil.ints Provides type-specific classes for integer elements or keys. 
 

Uses of Int2DoubleSortedMap in it.unimi.dsi.fastutil.ints
 

Classes in it.unimi.dsi.fastutil.ints that implement Int2DoubleSortedMap
 class AbstractInt2DoubleSortedMap
          An abstract class providing basic methods for sorted maps implementing a type-specific interface.
 class Int2DoubleAVLTreeMap
          A type-specific AVL tree map with a fast, small-footprint implementation.
 class Int2DoubleLinkedOpenHashMap
          A type-specific linked hash map with with a fast, small-footprint implementation.
 class Int2DoubleRBTreeMap
          A type-specific red-black tree map with a fast, small-footprint implementation.
static class Int2DoubleSortedMaps.EmptySortedMap
          An immutable class representing an empty type-specific sorted map.
static class Int2DoubleSortedMaps.Singleton
          An immutable class representing a type-specific singleton sorted map.
static class Int2DoubleSortedMaps.SynchronizedSortedMap
          A synchronized wrapper class for sorted maps.
static class Int2DoubleSortedMaps.UnmodifiableSortedMap
          An unmodifiable wrapper class for sorted maps.
 

Fields in it.unimi.dsi.fastutil.ints declared as Int2DoubleSortedMap
protected  Int2DoubleSortedMap Int2DoubleSortedMaps.SynchronizedSortedMap.sortedMap
           
protected  Int2DoubleSortedMap Int2DoubleSortedMaps.UnmodifiableSortedMap.sortedMap
           
 

Methods in it.unimi.dsi.fastutil.ints that return Int2DoubleSortedMap
 Int2DoubleSortedMap Int2DoubleLinkedOpenHashMap.headMap(int to)
           
 Int2DoubleSortedMap Int2DoubleSortedMaps.EmptySortedMap.headMap(int to)
           
 Int2DoubleSortedMap Int2DoubleSortedMaps.Singleton.headMap(int to)
           
 Int2DoubleSortedMap Int2DoubleSortedMaps.SynchronizedSortedMap.headMap(int to)
           
 Int2DoubleSortedMap Int2DoubleSortedMaps.UnmodifiableSortedMap.headMap(int to)
           
 Int2DoubleSortedMap Int2DoubleRBTreeMap.headMap(int to)
           
 Int2DoubleSortedMap Int2DoubleAVLTreeMap.headMap(int to)
           
 Int2DoubleSortedMap Int2DoubleSortedMap.headMap(int toKey)
          Returns a view of the portion of this sorted map whose keys are strictly less than toKey.
 Int2DoubleSortedMap AbstractInt2DoubleSortedMap.headMap(Integer to)
          Delegates to the corresponding type-specific method.
 Int2DoubleSortedMap Int2DoubleSortedMaps.EmptySortedMap.headMap(Integer oto)
           
 Int2DoubleSortedMap Int2DoubleSortedMaps.Singleton.headMap(Integer oto)
           
 Int2DoubleSortedMap Int2DoubleSortedMaps.SynchronizedSortedMap.headMap(Integer to)
           
 Int2DoubleSortedMap Int2DoubleSortedMaps.UnmodifiableSortedMap.headMap(Integer to)
           
 Int2DoubleSortedMap Int2DoubleSortedMap.headMap(Integer toKey)
          Returns a view of the portion of this sorted map whose keys are strictly less than toKey.
static Int2DoubleSortedMap Int2DoubleSortedMaps.singleton(int key, double value)
          Returns a type-specific immutable sorted map containing only the specified pair.
static Int2DoubleSortedMap Int2DoubleSortedMaps.singleton(int key, double value, IntComparator comparator)
          Returns a type-specific immutable sorted map containing only the specified pair.
static Int2DoubleSortedMap Int2DoubleSortedMaps.singleton(Integer key, Double value)
          Returns a type-specific immutable sorted map containing only the specified pair.
static Int2DoubleSortedMap Int2DoubleSortedMaps.singleton(Integer key, Double value, IntComparator comparator)
          RETURNS a type-specific immutable sorted map containing only the specified pair.
 Int2DoubleSortedMap AbstractInt2DoubleSortedMap.subMap(Integer from, Integer to)
          Delegates to the corresponding type-specific method.
 Int2DoubleSortedMap Int2DoubleSortedMaps.EmptySortedMap.subMap(Integer ofrom, Integer oto)
           
 Int2DoubleSortedMap Int2DoubleSortedMaps.Singleton.subMap(Integer ofrom, Integer oto)
           
 Int2DoubleSortedMap Int2DoubleSortedMaps.SynchronizedSortedMap.subMap(Integer from, Integer to)
           
 Int2DoubleSortedMap Int2DoubleSortedMaps.UnmodifiableSortedMap.subMap(Integer from, Integer to)
           
 Int2DoubleSortedMap Int2DoubleSortedMap.subMap(Integer fromKey, Integer toKey)
          Returns a view of the portion of this sorted map whose keys range from fromKey, inclusive, to toKey, exclusive.
 Int2DoubleSortedMap Int2DoubleLinkedOpenHashMap.subMap(int from, int to)
           
 Int2DoubleSortedMap Int2DoubleSortedMaps.EmptySortedMap.subMap(int from, int to)
           
 Int2DoubleSortedMap Int2DoubleSortedMaps.Singleton.subMap(int from, int to)
           
 Int2DoubleSortedMap Int2DoubleSortedMaps.SynchronizedSortedMap.subMap(int from, int to)
           
 Int2DoubleSortedMap Int2DoubleSortedMaps.UnmodifiableSortedMap.subMap(int from, int to)
           
 Int2DoubleSortedMap Int2DoubleRBTreeMap.subMap(int from, int to)
           
 Int2DoubleSortedMap Int2DoubleAVLTreeMap.subMap(int from, int to)
           
 Int2DoubleSortedMap Int2DoubleSortedMap.subMap(int fromKey, int toKey)
          Returns a view of the portion of this sorted map whose keys range from fromKey, inclusive, to toKey, exclusive.
static Int2DoubleSortedMap Int2DoubleSortedMaps.synchronize(Int2DoubleSortedMap m)
          Returns a synchronized type-specific sorted map backed by the given type-specific sorted map.
static Int2DoubleSortedMap Int2DoubleSortedMaps.synchronize(Int2DoubleSortedMap m, Object sync)
          Returns a synchronized type-specific sorted map backed by the given type-specific sorted map, using an assigned object to synchronize.
 Int2DoubleSortedMap Int2DoubleLinkedOpenHashMap.tailMap(int from)
           
 Int2DoubleSortedMap Int2DoubleSortedMaps.EmptySortedMap.tailMap(int from)
           
 Int2DoubleSortedMap Int2DoubleSortedMaps.Singleton.tailMap(int from)
           
 Int2DoubleSortedMap Int2DoubleSortedMaps.SynchronizedSortedMap.tailMap(int from)
           
 Int2DoubleSortedMap Int2DoubleSortedMaps.UnmodifiableSortedMap.tailMap(int from)
           
 Int2DoubleSortedMap Int2DoubleRBTreeMap.tailMap(int from)
           
 Int2DoubleSortedMap Int2DoubleAVLTreeMap.tailMap(int from)
           
 Int2DoubleSortedMap Int2DoubleSortedMap.tailMap(int fromKey)
          Returns a view of the portion of this sorted map whose keys are greater than or equal to fromKey.
 Int2DoubleSortedMap AbstractInt2DoubleSortedMap.tailMap(Integer from)
          Delegates to the corresponding type-specific method.
 Int2DoubleSortedMap Int2DoubleSortedMaps.EmptySortedMap.tailMap(Integer ofrom)
           
 Int2DoubleSortedMap Int2DoubleSortedMaps.Singleton.tailMap(Integer ofrom)
           
 Int2DoubleSortedMap Int2DoubleSortedMaps.SynchronizedSortedMap.tailMap(Integer from)
           
 Int2DoubleSortedMap Int2DoubleSortedMaps.UnmodifiableSortedMap.tailMap(Integer from)
           
 Int2DoubleSortedMap Int2DoubleSortedMap.tailMap(Integer fromKey)
          Returns a view of the portion of this sorted map whose keys are greater than or equal to fromKey.
static Int2DoubleSortedMap Int2DoubleSortedMaps.unmodifiable(Int2DoubleSortedMap m)
          Returns an unmodifiable type-specific sorted map backed by the given type-specific sorted map.
 

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

Constructors in it.unimi.dsi.fastutil.ints with parameters of type Int2DoubleSortedMap
Int2DoubleAVLTreeMap(Int2DoubleSortedMap m)
          Creates a new tree map copying a given sorted map (and its Comparator).
Int2DoubleRBTreeMap(Int2DoubleSortedMap m)
          Creates a new tree map copying a given sorted map (and its Comparator).
Int2DoubleSortedMaps.SynchronizedSortedMap(Int2DoubleSortedMap m)
           
Int2DoubleSortedMaps.SynchronizedSortedMap(Int2DoubleSortedMap m, Object sync)
           
Int2DoubleSortedMaps.UnmodifiableSortedMap(Int2DoubleSortedMap m)
           
 



Copyright © 2011. All Rights Reserved.