Uses of Interface
it.unimi.dsi.fastutil.booleans.BooleanList

Packages that use BooleanList
it.unimi.dsi.fastutil.booleans Provides type-specific classes for boolean elements or keys. 
 

Uses of BooleanList in it.unimi.dsi.fastutil.booleans
 

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

Fields in it.unimi.dsi.fastutil.booleans declared as BooleanList
protected  BooleanList AbstractBooleanList.BooleanSubList.l
          The list this sublist restricts.
protected  BooleanList BooleanLists.SynchronizedList.list
           
protected  BooleanList BooleanLists.UnmodifiableList.list
           
 

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

Methods in it.unimi.dsi.fastutil.booleans with parameters of type BooleanList
 boolean BooleanList.addAll(BooleanList c)
           
 boolean AbstractBooleanList.addAll(BooleanList l)
           
 boolean BooleanLists.EmptyList.addAll(BooleanList c)
           
 boolean BooleanLists.SynchronizedList.addAll(BooleanList l)
           
 boolean BooleanLists.UnmodifiableList.addAll(BooleanList l)
           
 boolean BooleanArrayList.addAll(int index, BooleanList l)
           
 boolean BooleanList.addAll(int index, BooleanList c)
           
 boolean AbstractBooleanList.addAll(int index, BooleanList l)
          Delegates to a more generic method.
 boolean AbstractBooleanList.BooleanSubList.addAll(int index, BooleanList l)
           
 boolean BooleanLists.EmptyList.addAll(int i, BooleanList c)
           
 boolean BooleanLists.SynchronizedList.addAll(int index, BooleanList l)
           
 boolean BooleanLists.UnmodifiableList.addAll(int index, BooleanList l)
           
 boolean AbstractBooleanBigList.BooleanSubList.addAll(long index, BooleanList l)
           
static BooleanBigList BooleanBigLists.asBigList(BooleanList list)
          Returns a big list backed by the specified list.
static BooleanList BooleanLists.shuffle(BooleanList l, Random random)
          Shuffles the specified list using the specified pseudorandom number generator.
static BooleanList BooleanLists.synchronize(BooleanList l)
          Returns a synchronized type-specific list backed by the given type-specific list.
static BooleanList BooleanLists.synchronize(BooleanList l, Object sync)
          Returns a synchronized type-specific list backed by the given type-specific list, using an assigned object to synchronize.
static BooleanList BooleanLists.unmodifiable(BooleanList l)
          Returns an unmodifiable type-specific list backed by the given type-specific list.
 

Constructors in it.unimi.dsi.fastutil.booleans with parameters of type BooleanList
AbstractBooleanList.BooleanSubList(BooleanList l, int from, int to)
           
BooleanArrayList(BooleanList l)
          Creates a new array list and fills it with a given type-specific list.
BooleanBigLists.ListBigList(BooleanList list)
           
BooleanLists.SynchronizedList(BooleanList l)
           
BooleanLists.SynchronizedList(BooleanList l, Object sync)
           
BooleanLists.UnmodifiableList(BooleanList l)
           
 



Copyright © 2011. All Rights Reserved.