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

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

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

Classes in it.unimi.dsi.fastutil.doubles that implement DoubleList
 class AbstractDoubleList
          An abstract class providing basic methods for lists implementing a type-specific list interface.
static class AbstractDoubleList.DoubleSubList
           
 class DoubleArrayList
          A type-specific array-based list; provides some additional methods that use polymorphism to avoid (un)boxing.
static class DoubleLists.EmptyList
          An immutable class representing an empty type-specific list.
static class DoubleLists.Singleton
          An immutable class representing a type-specific singleton list.
static class DoubleLists.SynchronizedList
          A synchronized wrapper class for lists.
static class DoubleLists.UnmodifiableList
          An unmodifiable wrapper class for lists.
 

Fields in it.unimi.dsi.fastutil.doubles declared as DoubleList
protected  DoubleList AbstractDoubleList.DoubleSubList.l
          The list this sublist restricts.
protected  DoubleList DoubleLists.SynchronizedList.list
           
protected  DoubleList DoubleLists.UnmodifiableList.list
           
 

Methods in it.unimi.dsi.fastutil.doubles that return DoubleList
 DoubleList AbstractDoubleList.doubleSubList(int from, int to)
          Deprecated. 
 DoubleList DoubleList.doubleSubList(int from, int to)
          Deprecated. As of fastutil 5, replaced by subList(int,int).
 DoubleList DoubleLists.EmptyList.doubleSubList(int from, int to)
          Deprecated. 
 DoubleList DoubleLists.SynchronizedList.doubleSubList(int from, int to)
          Deprecated. 
 DoubleList DoubleLists.UnmodifiableList.doubleSubList(int from, int to)
          Deprecated. 
static DoubleList DoubleIterators.pour(DoubleIterator i)
          Pours an iterator, returning a type-specific list.
static DoubleList DoubleIterators.pour(DoubleIterator i, int max)
          Pours an iterator, returning a type-specific list, with a limit on the number of elements.
static DoubleList DoubleLists.shuffle(DoubleList l, Random random)
          Shuffles the specified list using the specified pseudorandom number generator.
static DoubleList DoubleLists.singleton(double element)
          Returns a type-specific immutable list containing only the specified element.
static DoubleList DoubleLists.singleton(Object element)
          Returns a type-specific immutable list containing only the specified element.
 DoubleList AbstractDoubleList.subList(int from, int to)
           
 DoubleList AbstractDoubleList.DoubleSubList.subList(int from, int to)
           
 DoubleList DoubleList.subList(int from, int to)
          Returns a type-specific view of the portion of this list from the index from, inclusive, to the index to, exclusive.
 DoubleList DoubleLists.EmptyList.subList(int from, int to)
           
 DoubleList DoubleLists.Singleton.subList(int from, int to)
           
 DoubleList DoubleLists.SynchronizedList.subList(int from, int to)
           
 DoubleList DoubleLists.UnmodifiableList.subList(int from, int to)
           
static DoubleList DoubleLists.synchronize(DoubleList l)
          Returns a synchronized type-specific list backed by the given type-specific list.
static DoubleList DoubleLists.synchronize(DoubleList l, Object sync)
          Returns a synchronized type-specific list backed by the given type-specific list, using an assigned object to synchronize.
static DoubleList DoubleLists.unmodifiable(DoubleList l)
          Returns an unmodifiable type-specific list backed by the given type-specific list.
 

Methods in it.unimi.dsi.fastutil.doubles with parameters of type DoubleList
 boolean AbstractDoubleList.addAll(DoubleList l)
           
 boolean DoubleList.addAll(DoubleList c)
           
 boolean DoubleLists.EmptyList.addAll(DoubleList c)
           
 boolean DoubleLists.SynchronizedList.addAll(DoubleList l)
           
 boolean DoubleLists.UnmodifiableList.addAll(DoubleList l)
           
 boolean AbstractDoubleList.addAll(int index, DoubleList l)
          Delegates to a more generic method.
 boolean AbstractDoubleList.DoubleSubList.addAll(int index, DoubleList l)
           
 boolean DoubleArrayList.addAll(int index, DoubleList l)
           
 boolean DoubleList.addAll(int index, DoubleList c)
           
 boolean DoubleLists.EmptyList.addAll(int i, DoubleList c)
           
 boolean DoubleLists.SynchronizedList.addAll(int index, DoubleList l)
           
 boolean DoubleLists.UnmodifiableList.addAll(int index, DoubleList l)
           
 boolean AbstractDoubleBigList.DoubleSubList.addAll(long index, DoubleList l)
           
static DoubleBigList DoubleBigLists.asBigList(DoubleList list)
          Returns a big list backed by the specified list.
static DoubleList DoubleLists.shuffle(DoubleList l, Random random)
          Shuffles the specified list using the specified pseudorandom number generator.
static DoubleList DoubleLists.synchronize(DoubleList l)
          Returns a synchronized type-specific list backed by the given type-specific list.
static DoubleList DoubleLists.synchronize(DoubleList l, Object sync)
          Returns a synchronized type-specific list backed by the given type-specific list, using an assigned object to synchronize.
static DoubleList DoubleLists.unmodifiable(DoubleList l)
          Returns an unmodifiable type-specific list backed by the given type-specific list.
 

Constructors in it.unimi.dsi.fastutil.doubles with parameters of type DoubleList
AbstractDoubleList.DoubleSubList(DoubleList l, int from, int to)
           
DoubleArrayList(DoubleList l)
          Creates a new array list and fills it with a given type-specific list.
DoubleBigLists.ListBigList(DoubleList list)
           
DoubleLists.SynchronizedList(DoubleList l)
           
DoubleLists.SynchronizedList(DoubleList l, Object sync)
           
DoubleLists.UnmodifiableList(DoubleList l)
           
 



Copyright © 2011. All Rights Reserved.