Class BooleanBigLists.ListBigList
- java.lang.Object
-
- java.util.AbstractCollection<java.lang.Boolean>
-
- it.unimi.dsi.fastutil.booleans.AbstractBooleanCollection
-
- it.unimi.dsi.fastutil.booleans.AbstractBooleanBigList
-
- it.unimi.dsi.fastutil.booleans.BooleanBigLists.ListBigList
-
- All Implemented Interfaces:
BigList<java.lang.Boolean>
,BooleanBigList
,BooleanCollection
,BooleanIterable
,BooleanStack
,Size64
,Stack<java.lang.Boolean>
,java.io.Serializable
,java.lang.Comparable<BigList<? extends java.lang.Boolean>>
,java.lang.Iterable<java.lang.Boolean>
,java.util.Collection<java.lang.Boolean>
- Enclosing class:
- BooleanBigLists
public static class BooleanBigLists.ListBigList extends AbstractBooleanBigList implements java.io.Serializable
A class exposing a list as a big list.- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class it.unimi.dsi.fastutil.booleans.AbstractBooleanBigList
AbstractBooleanBigList.BooleanSubList
-
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description boolean
add(boolean key)
Ensures that this collection contains the specified element (optional operation).void
add(long index, boolean key)
Inserts the specified element at the specified position in this type-specific big list (optional operation).boolean
addAll(long index, BooleanBigList c)
Inserts all of the elements in the specified type-specific big list into this type-specific big list at the specified position (optional operation).boolean
addAll(long index, BooleanCollection c)
Inserts all of the elements in the specified type-specific collection into this type-specific big list at the specified position (optional operation).boolean
addAll(long index, java.util.Collection<? extends java.lang.Boolean> c)
Adds all of the elements in the specified collection to this list (optional operation).boolean
addAll(BooleanBigList c)
Appends all of the elements in the specified type-specific big list to the end of this type-specific big list (optional operation).boolean
addAll(BooleanCollection c)
Adds all elements of the given type-specific collection to this collection.boolean
addAll(java.util.Collection<? extends java.lang.Boolean> c)
void
clear()
boolean
contains(boolean key)
Returns true if this list contains the specified element.boolean
containsAll(BooleanCollection c)
Checks whether this collection contains all elements from the given type-specific collection.boolean
containsAll(java.util.Collection<?> c)
boolean
getBoolean(long index)
Returns the element at the specified position.int
hashCode()
Returns the hash code for this big list, which is identical toList.hashCode()
.long
indexOf(boolean k)
Returns the index of the first occurrence of the specified element in this type-specific big list, or -1 if this big list does not contain the element.boolean
isEmpty()
Checks whether the stack is empty.BooleanBigListIterator
iterator()
Returns a type-specific iterator on the elements of this collection.long
lastIndexOf(boolean k)
Returns the index of the last occurrence of the specified element in this type-specific big list, or -1 if this big list does not contain the element.BooleanBigListIterator
listIterator()
Returns a type-specific big-list iterator on this type-specific big list.BooleanBigListIterator
listIterator(long index)
Returns a type-specific list iterator on this type-specific big list starting at a given index.boolean
removeAll(BooleanCollection c)
Remove from this collection all elements in the given type-specific collection.boolean
removeAll(java.util.Collection<?> c)
boolean
removeBoolean(long index)
Removes the element at the specified position.void
removeElements(long from, long to)
Removes (hopefully quickly) elements of this type-specific big list.boolean
retainAll(BooleanCollection c)
Retains in this collection only elements from the given type-specific collection.boolean
retainAll(java.util.Collection<?> c)
boolean
set(long index, boolean k)
Replaces the element at the specified position in this big list with the specified element (optional operation).void
size(long size)
Sets the size of this big list.long
size64()
Returns the size of this data structure as a long.BooleanBigList
subList(long from, long to)
Returns a type-specific view of the portion of this type-specific big list from the indexfrom
, inclusive, to the indexto
, exclusive.<T> T[]
toArray(T[] a)
boolean[]
toBooleanArray()
Returns a primitive type array containing the items of this collection.boolean[]
toBooleanArray(boolean[] a)
Deprecated.-
Methods inherited from class it.unimi.dsi.fastutil.booleans.AbstractBooleanBigList
add, addElements, addElements, compareTo, equals, get, getElements, indexOf, lastIndexOf, peek, peekBoolean, pop, popBoolean, push, push, rem, remove, set, size, top, topBoolean, toString
-
Methods inherited from class it.unimi.dsi.fastutil.booleans.AbstractBooleanCollection
add, contains, remove, toArray
-
Methods inherited from interface it.unimi.dsi.fastutil.booleans.BooleanCollection
add, contains, remove, toArray
-
Methods inherited from interface it.unimi.dsi.fastutil.booleans.BooleanIterable
forEach, forEach
-
-
-
-
Method Detail
-
size64
public long size64()
Description copied from interface:Size64
Returns the size of this data structure as a long.
-
size
public void size(long size)
Description copied from interface:BigList
Sets the size of this big list.If the specified size is smaller than the current size, the last elements are discarded. Otherwise, they are filled with 0/
null
/false
.- Specified by:
size
in interfaceBigList<java.lang.Boolean>
- Overrides:
size
in classAbstractBooleanBigList
- Parameters:
size
- the new size.
-
iterator
public BooleanBigListIterator iterator()
Description copied from class:AbstractBooleanBigList
Returns a type-specific iterator on the elements of this collection.Note that this specification strengthens the one given in
Iterable.iterator()
, which was already strengthened in the corresponding type-specific class, but was weakened by the fact that this interface extendsCollection
.This implementation delegates to
AbstractBooleanBigList.listIterator()
.- Specified by:
iterator
in interfaceBooleanBigList
- Specified by:
iterator
in interfaceBooleanCollection
- Specified by:
iterator
in interfaceBooleanIterable
- Specified by:
iterator
in interfacejava.util.Collection<java.lang.Boolean>
- Specified by:
iterator
in interfacejava.lang.Iterable<java.lang.Boolean>
- Overrides:
iterator
in classAbstractBooleanBigList
- Returns:
- a type-specific iterator on the elements of this collection.
- See Also:
Iterable.iterator()
-
listIterator
public BooleanBigListIterator listIterator()
Description copied from class:AbstractBooleanBigList
Returns a type-specific big-list iterator on this type-specific big list.Note that this specification strengthens the one given in
BigList.listIterator()
.This implementation delegates to
listIterator(0)
.- Specified by:
listIterator
in interfaceBigList<java.lang.Boolean>
- Specified by:
listIterator
in interfaceBooleanBigList
- Overrides:
listIterator
in classAbstractBooleanBigList
- Returns:
- a big-list iterator over the elements in this big list.
- See Also:
BigList.listIterator()
-
listIterator
public BooleanBigListIterator listIterator(long index)
Description copied from class:AbstractBooleanBigList
Returns a type-specific list iterator on this type-specific big list starting at a given index.Note that this specification strengthens the one given in
BigList.listIterator(long)
.This implementation is based on the random-access methods.
- Specified by:
listIterator
in interfaceBigList<java.lang.Boolean>
- Specified by:
listIterator
in interfaceBooleanBigList
- Overrides:
listIterator
in classAbstractBooleanBigList
- Parameters:
index
- index of first element to be returned from the big-list iterator.- Returns:
- a big-list iterator of the elements in this big list, starting at the specified position in this big list.
- See Also:
BigList.listIterator(long)
-
addAll
public boolean addAll(long index, java.util.Collection<? extends java.lang.Boolean> c)
Description copied from class:AbstractBooleanBigList
Adds all of the elements in the specified collection to this list (optional operation).- Specified by:
addAll
in interfaceBigList<java.lang.Boolean>
- Overrides:
addAll
in classAbstractBooleanBigList
- Parameters:
index
- index at which to insert the first element from the specified collection.c
- collection containing elements to be added to this big list.- Returns:
true
if this big list changed as a result of the call- See Also:
List.addAll(int, Collection)
-
subList
public BooleanBigList subList(long from, long to)
Description copied from interface:BooleanBigList
Returns a type-specific view of the portion of this type-specific big list from the indexfrom
, inclusive, to the indexto
, exclusive.Note that this specification strengthens the one given in
BigList.subList(long,long)
.- Specified by:
subList
in interfaceBigList<java.lang.Boolean>
- Specified by:
subList
in interfaceBooleanBigList
- Overrides:
subList
in classAbstractBooleanBigList
- Parameters:
from
- the starting element (inclusive).to
- the ending element (exclusive).- Returns:
- a big sublist view of this big list.
- See Also:
BigList.subList(long,long)
-
contains
public boolean contains(boolean key)
Description copied from class:AbstractBooleanBigList
Returns true if this list contains the specified element.This implementation delegates to
indexOf()
.- Specified by:
contains
in interfaceBooleanCollection
- Overrides:
contains
in classAbstractBooleanBigList
- See Also:
Collection.contains(Object)
-
toBooleanArray
public boolean[] toBooleanArray()
Description copied from interface:BooleanCollection
Returns a primitive type array containing the items of this collection.- Specified by:
toBooleanArray
in interfaceBooleanCollection
- Overrides:
toBooleanArray
in classAbstractBooleanCollection
- Returns:
- a primitive type array containing the items of this collection.
- See Also:
Collection.toArray()
-
removeElements
public void removeElements(long from, long to)
Description copied from class:AbstractBooleanBigList
Removes (hopefully quickly) elements of this type-specific big list.This is a trivial iterator-based implementation. It is expected that implementations will override this method with a more optimized version.
- Specified by:
removeElements
in interfaceBooleanBigList
- Overrides:
removeElements
in classAbstractBooleanBigList
- Parameters:
from
- the start index (inclusive).to
- the end index (exclusive).
-
toBooleanArray
@Deprecated public boolean[] toBooleanArray(boolean[] a)
Deprecated.Description copied from class:AbstractBooleanCollection
Returns a primitive type array containing the items of this collection.Note that, contrarily to
Collection.toArray(Object[])
, this methods just writes all elements of this collection: no special value will be added after the last one.- Specified by:
toBooleanArray
in interfaceBooleanCollection
- Overrides:
toBooleanArray
in classAbstractBooleanCollection
- Parameters:
a
- if this array is big enough, it will be used to store this collection.- Returns:
- a primitive type array containing the items of this collection.
- See Also:
Collection.toArray(Object[])
-
addAll
public boolean addAll(long index, BooleanCollection c)
Description copied from class:AbstractBooleanBigList
Inserts all of the elements in the specified type-specific collection into this type-specific big list at the specified position (optional operation).This implementation delegates to the type-specific version of
AbstractBooleanBigList.addAll(long, Collection)
.- Specified by:
addAll
in interfaceBooleanBigList
- Overrides:
addAll
in classAbstractBooleanBigList
- See Also:
List.addAll(int,java.util.Collection)
-
addAll
public boolean addAll(BooleanCollection c)
Description copied from class:AbstractBooleanBigList
Adds all elements of the given type-specific collection to this collection.This implementation delegates to the type-specific version of
AbstractBooleanBigList.addAll(long, Collection)
.- Specified by:
addAll
in interfaceBooleanCollection
- Overrides:
addAll
in classAbstractBooleanBigList
- Parameters:
c
- a type-specific collection.- Returns:
true
if this collection changed as a result of the call.- See Also:
Collection.addAll(Collection)
-
addAll
public boolean addAll(long index, BooleanBigList c)
Description copied from class:AbstractBooleanBigList
Inserts all of the elements in the specified type-specific big list into this type-specific big list at the specified position (optional operation).This implementation delegates to the type-specific version of
AbstractBooleanBigList.addAll(long, Collection)
.- Specified by:
addAll
in interfaceBooleanBigList
- Overrides:
addAll
in classAbstractBooleanBigList
- See Also:
List.addAll(int,java.util.Collection)
-
addAll
public boolean addAll(BooleanBigList c)
Description copied from class:AbstractBooleanBigList
Appends all of the elements in the specified type-specific big list to the end of this type-specific big list (optional operation).This implementation delegates to the type-specific list version of
AbstractBooleanBigList.addAll(long, Collection)
.- Specified by:
addAll
in interfaceBooleanBigList
- Overrides:
addAll
in classAbstractBooleanBigList
- See Also:
List.addAll(int,java.util.Collection)
-
containsAll
public boolean containsAll(BooleanCollection c)
Description copied from interface:BooleanCollection
Checks whether this collection contains all elements from the given type-specific collection.- Specified by:
containsAll
in interfaceBooleanCollection
- Overrides:
containsAll
in classAbstractBooleanCollection
- Parameters:
c
- a type-specific collection.- Returns:
true
if this collection contains all elements of the argument.- See Also:
Collection.containsAll(Collection)
-
removeAll
public boolean removeAll(BooleanCollection c)
Description copied from interface:BooleanCollection
Remove from this collection all elements in the given type-specific collection.- Specified by:
removeAll
in interfaceBooleanCollection
- Overrides:
removeAll
in classAbstractBooleanCollection
- Parameters:
c
- a type-specific collection.- Returns:
true
if this collection changed as a result of the call.- See Also:
Collection.removeAll(Collection)
-
retainAll
public boolean retainAll(BooleanCollection c)
Description copied from interface:BooleanCollection
Retains in this collection only elements from the given type-specific collection.- Specified by:
retainAll
in interfaceBooleanCollection
- Overrides:
retainAll
in classAbstractBooleanCollection
- Parameters:
c
- a type-specific collection.- Returns:
true
if this collection changed as a result of the call.- See Also:
Collection.retainAll(Collection)
-
add
public void add(long index, boolean key)
Description copied from class:AbstractBooleanBigList
Inserts the specified element at the specified position in this type-specific big list (optional operation).This implementation always throws an
UnsupportedOperationException
.- Specified by:
add
in interfaceBooleanBigList
- Overrides:
add
in classAbstractBooleanBigList
- See Also:
BigList.add(long,Object)
-
add
public boolean add(boolean key)
Description copied from class:AbstractBooleanBigList
Ensures that this collection contains the specified element (optional operation).This implementation always throws an
UnsupportedOperationException
.This implementation delegates to the type-specific version of
BigList.add(long, Object)
.- Specified by:
add
in interfaceBooleanCollection
- Overrides:
add
in classAbstractBooleanBigList
- See Also:
Collection.add(Object)
-
getBoolean
public boolean getBoolean(long index)
Description copied from interface:BooleanBigList
Returns the element at the specified position.- Specified by:
getBoolean
in interfaceBooleanBigList
- See Also:
BigList.get(long)
-
indexOf
public long indexOf(boolean k)
Description copied from interface:BooleanBigList
Returns the index of the first occurrence of the specified element in this type-specific big list, or -1 if this big list does not contain the element.- Specified by:
indexOf
in interfaceBooleanBigList
- Overrides:
indexOf
in classAbstractBooleanBigList
- See Also:
BigList.indexOf(Object)
-
lastIndexOf
public long lastIndexOf(boolean k)
Description copied from interface:BooleanBigList
Returns the index of the last occurrence of the specified element in this type-specific big list, or -1 if this big list does not contain the element.- Specified by:
lastIndexOf
in interfaceBooleanBigList
- Overrides:
lastIndexOf
in classAbstractBooleanBigList
- See Also:
BigList.lastIndexOf(Object)
-
removeBoolean
public boolean removeBoolean(long index)
Description copied from class:AbstractBooleanBigList
Removes the element at the specified position.This implementation always throws an
UnsupportedOperationException
.- Specified by:
removeBoolean
in interfaceBooleanBigList
- Overrides:
removeBoolean
in classAbstractBooleanBigList
- See Also:
BigList.remove(long)
-
set
public boolean set(long index, boolean k)
Description copied from class:AbstractBooleanBigList
Replaces the element at the specified position in this big list with the specified element (optional operation).This implementation always throws an
UnsupportedOperationException
.- Specified by:
set
in interfaceBooleanBigList
- Overrides:
set
in classAbstractBooleanBigList
- See Also:
BigList.set(long,Object)
-
isEmpty
public boolean isEmpty()
Description copied from interface:Stack
Checks whether the stack is empty.
-
toArray
public <T> T[] toArray(T[] a)
- Specified by:
toArray
in interfacejava.util.Collection<java.lang.Boolean>
- Overrides:
toArray
in classjava.util.AbstractCollection<java.lang.Boolean>
-
containsAll
public boolean containsAll(java.util.Collection<?> c)
Description copied from class:AbstractBooleanCollection
This implementation delegates to the type-specific version if given a type-specific collection, otherwise is uses the implementation from
AbstractCollection
.- Specified by:
containsAll
in interfacejava.util.Collection<java.lang.Boolean>
- Overrides:
containsAll
in classAbstractBooleanCollection
-
addAll
public boolean addAll(java.util.Collection<? extends java.lang.Boolean> c)
Description copied from class:AbstractBooleanBigList
This implementation delegates to the type-specific version if given a type-specific collection, otherwise is uses the implementation from
AbstractCollection
.This implementation delegates to the type-specific version of
BigList.addAll(long, Collection)
.- Specified by:
addAll
in interfacejava.util.Collection<java.lang.Boolean>
- Overrides:
addAll
in classAbstractBooleanBigList
-
removeAll
public boolean removeAll(java.util.Collection<?> c)
Description copied from class:AbstractBooleanCollection
This implementation delegates to the type-specific version if given a type-specific collection, otherwise is uses the implementation from
AbstractCollection
.- Specified by:
removeAll
in interfacejava.util.Collection<java.lang.Boolean>
- Overrides:
removeAll
in classAbstractBooleanCollection
-
retainAll
public boolean retainAll(java.util.Collection<?> c)
Description copied from class:AbstractBooleanCollection
This implementation delegates to the type-specific version if given a type-specific collection, otherwise is uses the implementation from
AbstractCollection
.- Specified by:
retainAll
in interfacejava.util.Collection<java.lang.Boolean>
- Overrides:
retainAll
in classAbstractBooleanCollection
-
clear
public void clear()
Description copied from class:AbstractBooleanBigList
This implementation delegates to
AbstractBooleanBigList.removeElements(long, long)
.- Specified by:
clear
in interfacejava.util.Collection<java.lang.Boolean>
- Overrides:
clear
in classAbstractBooleanBigList
-
hashCode
public int hashCode()
Description copied from class:AbstractBooleanBigList
Returns the hash code for this big list, which is identical toList.hashCode()
.- Specified by:
hashCode
in interfacejava.util.Collection<java.lang.Boolean>
- Overrides:
hashCode
in classAbstractBooleanBigList
- Returns:
- the hash code for this big list.
-
-