Uses of Interface
it.unimi.dsi.fastutil.longs.LongList

Packages that use LongList
it.unimi.dsi.fastutil.longs Provides type-specific classes for long elements or keys. 
 

Uses of LongList in it.unimi.dsi.fastutil.longs
 

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

Fields in it.unimi.dsi.fastutil.longs declared as LongList
protected  LongList AbstractLongList.LongSubList.l
          The list this sublist restricts.
protected  LongList LongLists.SynchronizedList.list
           
protected  LongList LongLists.UnmodifiableList.list
           
 

Methods in it.unimi.dsi.fastutil.longs that return LongList
 LongList AbstractLongList.longSubList(int from, int to)
          Deprecated. 
 LongList LongList.longSubList(int from, int to)
          Deprecated. As of fastutil 5, replaced by subList(int,int).
 LongList LongLists.EmptyList.longSubList(int from, int to)
          Deprecated. 
 LongList LongLists.SynchronizedList.longSubList(int from, int to)
          Deprecated. 
 LongList LongLists.UnmodifiableList.longSubList(int from, int to)
          Deprecated. 
static LongList LongIterators.pour(LongIterator i)
          Pours an iterator, returning a type-specific list.
static LongList LongIterators.pour(LongIterator i, int max)
          Pours an iterator, returning a type-specific list, with a limit on the number of elements.
static LongList LongLists.shuffle(LongList l, Random random)
          Shuffles the specified list using the specified pseudorandom number generator.
static LongList LongLists.singleton(long element)
          Returns a type-specific immutable list containing only the specified element.
static LongList LongLists.singleton(Object element)
          Returns a type-specific immutable list containing only the specified element.
 LongList AbstractLongList.subList(int from, int to)
           
 LongList AbstractLongList.LongSubList.subList(int from, int to)
           
 LongList LongList.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.
 LongList LongLists.EmptyList.subList(int from, int to)
           
 LongList LongLists.Singleton.subList(int from, int to)
           
 LongList LongLists.SynchronizedList.subList(int from, int to)
           
 LongList LongLists.UnmodifiableList.subList(int from, int to)
           
static LongList LongLists.synchronize(LongList l)
          Returns a synchronized type-specific list backed by the given type-specific list.
static LongList LongLists.synchronize(LongList l, Object sync)
          Returns a synchronized type-specific list backed by the given type-specific list, using an assigned object to synchronize.
static LongList LongLists.unmodifiable(LongList l)
          Returns an unmodifiable type-specific list backed by the given type-specific list.
 

Methods in it.unimi.dsi.fastutil.longs with parameters of type LongList
 boolean LongArrayList.addAll(int index, LongList l)
           
 boolean AbstractLongList.addAll(int index, LongList l)
          Delegates to a more generic method.
 boolean AbstractLongList.LongSubList.addAll(int index, LongList l)
           
 boolean LongList.addAll(int index, LongList c)
           
 boolean LongLists.EmptyList.addAll(int i, LongList c)
           
 boolean LongLists.SynchronizedList.addAll(int index, LongList l)
           
 boolean LongLists.UnmodifiableList.addAll(int index, LongList l)
           
 boolean AbstractLongList.addAll(LongList l)
           
 boolean LongList.addAll(LongList c)
           
 boolean LongLists.EmptyList.addAll(LongList c)
           
 boolean LongLists.SynchronizedList.addAll(LongList l)
           
 boolean LongLists.UnmodifiableList.addAll(LongList l)
           
 boolean AbstractLongBigList.LongSubList.addAll(long index, LongList l)
           
static LongBigList LongBigLists.asBigList(LongList list)
          Returns a big list backed by the specified list.
static LongList LongLists.shuffle(LongList l, Random random)
          Shuffles the specified list using the specified pseudorandom number generator.
static LongList LongLists.synchronize(LongList l)
          Returns a synchronized type-specific list backed by the given type-specific list.
static LongList LongLists.synchronize(LongList l, Object sync)
          Returns a synchronized type-specific list backed by the given type-specific list, using an assigned object to synchronize.
static LongList LongLists.unmodifiable(LongList l)
          Returns an unmodifiable type-specific list backed by the given type-specific list.
 

Constructors in it.unimi.dsi.fastutil.longs with parameters of type LongList
AbstractLongList.LongSubList(LongList l, int from, int to)
           
LongArrayList(LongList l)
          Creates a new array list and fills it with a given type-specific list.
LongBigLists.ListBigList(LongList list)
           
LongLists.SynchronizedList(LongList l)
           
LongLists.SynchronizedList(LongList l, Object sync)
           
LongLists.UnmodifiableList(LongList l)
           
 



Copyright © 2011. All Rights Reserved.