Package it.unimi.dsi.fastutil.doubles
Class DoubleBigLists.ListBigList
java.lang.Object
java.util.AbstractCollection<Double>
it.unimi.dsi.fastutil.doubles.AbstractDoubleCollection
it.unimi.dsi.fastutil.doubles.AbstractDoubleBigList
it.unimi.dsi.fastutil.doubles.DoubleBigLists.ListBigList
- All Implemented Interfaces:
BigList<Double>
,DoubleBigList
,DoubleCollection
,DoubleIterable
,DoubleStack
,Size64
,Stack<Double>
,Serializable
,Comparable<BigList<? extends Double>>
,Iterable<Double>
,Collection<Double>
- Enclosing class:
DoubleBigLists
public static class DoubleBigLists.ListBigList
extends AbstractDoubleBigList
implements Serializable
A class exposing a list as a big list.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class it.unimi.dsi.fastutil.doubles.AbstractDoubleBigList
AbstractDoubleBigList.DoubleRandomAccessSubList, AbstractDoubleBigList.DoubleSubList
-
Method Summary
Modifier and TypeMethodDescriptionboolean
add
(double key) Ensures that this collection contains the specified element (optional operation).void
add
(long index, double key) Inserts the specified element at the specified position in this type-specific big list (optional operation).boolean
addAll
(long index, DoubleBigList 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, DoubleCollection 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, Collection<? extends Double> c) Adds all of the elements in the specified collection to this list (optional operation).boolean
Appends all of the elements in the specified type-specific big list to the end of this type-specific big list (optional operation).boolean
Adds all elements of the given type-specific collection to this collection.boolean
addAll
(Collection<? extends Double> c) void
clear()
boolean
contains
(double key) Returns true if this list contains the specified element.boolean
Checks whether this collection contains all elements from the given type-specific collection.boolean
containsAll
(Collection<?> c) double
getDouble
(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
(double 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.iterator()
Returns a type-specific iterator on the elements of this collection.long
lastIndexOf
(double 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.Returns a type-specific big-list iterator on this type-specific big list.listIterator
(long index) Returns a type-specific list iterator on this type-specific big list starting at a given index.boolean
Remove from this collection all elements in the given type-specific collection.boolean
removeAll
(Collection<?> c) double
removeDouble
(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
Retains in this collection only elements from the given type-specific collection.boolean
retainAll
(Collection<?> c) double
set
(long index, double 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.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) double[]
Returns a primitive type array containing the items of this collection.double[]
toDoubleArray
(double[] a) Deprecated.Methods inherited from class it.unimi.dsi.fastutil.doubles.AbstractDoubleBigList
add, addElements, addElements, compareTo, equals, forEach, get, getElements, indexOf, lastIndexOf, peek, peekDouble, pop, popDouble, push, push, rem, remove, set, setElements, size, top, topDouble, toString
Methods inherited from class it.unimi.dsi.fastutil.doubles.AbstractDoubleCollection
add, contains, forEach, remove, removeIf, toArray
Methods inherited from class java.util.AbstractCollection
toArray
Methods inherited from interface java.util.Collection
toArray, toArray
Methods inherited from interface it.unimi.dsi.fastutil.doubles.DoubleBigList
addAll, addAll, getElements, setElements, setElements, spliterator
Methods inherited from interface it.unimi.dsi.fastutil.doubles.DoubleCollection
add, contains, doubleIterator, doubleParallelStream, doubleSpliterator, doubleStream, parallelStream, remove, removeIf, removeIf, removeIf, stream, toArray
Methods inherited from interface it.unimi.dsi.fastutil.doubles.DoubleIterable
forEach, forEach
-
Method Details
-
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<Double>
- Overrides:
size
in classAbstractDoubleBigList
- Parameters:
size
- the new size.
-
iterator
Description copied from class:AbstractDoubleBigList
Returns a type-specific iterator on the elements of this collection.- Specified by:
iterator
in interfaceCollection<Double>
- Specified by:
iterator
in interfaceDoubleBigList
- Specified by:
iterator
in interfaceDoubleCollection
- Specified by:
iterator
in interfaceDoubleIterable
- Specified by:
iterator
in interfaceIterable<Double>
- Overrides:
iterator
in classAbstractDoubleBigList
- Returns:
- a type-specific iterator on the elements of this collection.
- See Also:
-
listIterator
Description copied from class:AbstractDoubleBigList
Returns a type-specific big-list iterator on this type-specific big list.- Specified by:
listIterator
in interfaceBigList<Double>
- Specified by:
listIterator
in interfaceDoubleBigList
- Overrides:
listIterator
in classAbstractDoubleBigList
- Returns:
- a big-list iterator over the elements in this big list.
- See Also:
-
listIterator
Description copied from class:AbstractDoubleBigList
Returns a type-specific list iterator on this type-specific big list starting at a given index.- Specified by:
listIterator
in interfaceBigList<Double>
- Specified by:
listIterator
in interfaceDoubleBigList
- Overrides:
listIterator
in classAbstractDoubleBigList
- 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:
-
addAll
Description copied from class:AbstractDoubleBigList
Adds all of the elements in the specified collection to this list (optional operation).- Specified by:
addAll
in interfaceBigList<Double>
- Overrides:
addAll
in classAbstractDoubleBigList
- 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:
-
subList
Description copied from interface:DoubleBigList
Returns a type-specific view of the portion of this type-specific big list from the indexfrom
, inclusive, to the indexto
, exclusive.- Specified by:
subList
in interfaceBigList<Double>
- Specified by:
subList
in interfaceDoubleBigList
- Overrides:
subList
in classAbstractDoubleBigList
- Parameters:
from
- the starting element (inclusive).to
- the ending element (exclusive).- Returns:
- a big sublist view of this big list.
- See Also:
-
contains
public boolean contains(double key) Description copied from class:AbstractDoubleBigList
Returns true if this list contains the specified element.- Specified by:
contains
in interfaceDoubleCollection
- Overrides:
contains
in classAbstractDoubleBigList
- See Also:
-
toDoubleArray
public double[] toDoubleArray()Description copied from interface:DoubleCollection
Returns a primitive type array containing the items of this collection.- Specified by:
toDoubleArray
in interfaceDoubleCollection
- Overrides:
toDoubleArray
in classAbstractDoubleCollection
- Returns:
- a primitive type array containing the items of this collection.
- See Also:
-
removeElements
public void removeElements(long from, long to) Description copied from class:AbstractDoubleBigList
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 interfaceDoubleBigList
- Overrides:
removeElements
in classAbstractDoubleBigList
- Parameters:
from
- the start index (inclusive).to
- the end index (exclusive).
-
toDoubleArray
Deprecated.Description copied from class:AbstractDoubleCollection
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:
toDoubleArray
in interfaceDoubleCollection
- Overrides:
toDoubleArray
in classAbstractDoubleCollection
- 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:
-
addAll
Description copied from class:AbstractDoubleBigList
Inserts all of the elements in the specified type-specific collection into this type-specific big list at the specified position (optional operation).- Specified by:
addAll
in interfaceDoubleBigList
- Overrides:
addAll
in classAbstractDoubleBigList
- See Also:
-
addAll
Description copied from class:AbstractDoubleBigList
Adds all elements of the given type-specific collection to this collection.- Specified by:
addAll
in interfaceDoubleCollection
- Overrides:
addAll
in classAbstractDoubleBigList
- Parameters:
c
- a type-specific collection.- Returns:
true
if this collection changed as a result of the call.- See Also:
-
addAll
Description copied from interface:DoubleBigList
Inserts all of the elements in the specified type-specific big list into this type-specific big list at the specified position (optional operation).- Specified by:
addAll
in interfaceDoubleBigList
- See Also:
-
addAll
Description copied from interface:DoubleBigList
Appends all of the elements in the specified type-specific big list to the end of this type-specific big list (optional operation).- Specified by:
addAll
in interfaceDoubleBigList
- See Also:
-
containsAll
Description copied from interface:DoubleCollection
Checks whether this collection contains all elements from the given type-specific collection.- Specified by:
containsAll
in interfaceDoubleCollection
- Overrides:
containsAll
in classAbstractDoubleCollection
- Parameters:
c
- a type-specific collection.- Returns:
true
if this collection contains all elements of the argument.- See Also:
-
removeAll
Description copied from interface:DoubleCollection
Remove from this collection all elements in the given type-specific collection.- Specified by:
removeAll
in interfaceDoubleCollection
- Overrides:
removeAll
in classAbstractDoubleCollection
- Parameters:
c
- a type-specific collection.- Returns:
true
if this collection changed as a result of the call.- See Also:
-
retainAll
Description copied from interface:DoubleCollection
Retains in this collection only elements from the given type-specific collection.- Specified by:
retainAll
in interfaceDoubleCollection
- Overrides:
retainAll
in classAbstractDoubleCollection
- Parameters:
c
- a type-specific collection.- Returns:
true
if this collection changed as a result of the call.- See Also:
-
add
public void add(long index, double key) Description copied from class:AbstractDoubleBigList
Inserts the specified element at the specified position in this type-specific big list (optional operation).- Specified by:
add
in interfaceDoubleBigList
- Overrides:
add
in classAbstractDoubleBigList
- See Also:
-
add
public boolean add(double key) Description copied from class:AbstractDoubleBigList
Ensures that this collection contains the specified element (optional operation).- Specified by:
add
in interfaceDoubleCollection
- Overrides:
add
in classAbstractDoubleBigList
- See Also:
-
getDouble
public double getDouble(long index) Description copied from interface:DoubleBigList
Returns the element at the specified position.- Specified by:
getDouble
in interfaceDoubleBigList
- See Also:
-
indexOf
public long indexOf(double k) Description copied from interface:DoubleBigList
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 interfaceDoubleBigList
- Overrides:
indexOf
in classAbstractDoubleBigList
- See Also:
-
lastIndexOf
public long lastIndexOf(double k) Description copied from interface:DoubleBigList
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 interfaceDoubleBigList
- Overrides:
lastIndexOf
in classAbstractDoubleBigList
- See Also:
-
removeDouble
public double removeDouble(long index) Description copied from class:AbstractDoubleBigList
Removes the element at the specified position.- Specified by:
removeDouble
in interfaceDoubleBigList
- Overrides:
removeDouble
in classAbstractDoubleBigList
- See Also:
-
set
public double set(long index, double k) Description copied from class:AbstractDoubleBigList
Replaces the element at the specified position in this big list with the specified element (optional operation).- Specified by:
set
in interfaceDoubleBigList
- Overrides:
set
in classAbstractDoubleBigList
- See Also:
-
isEmpty
public boolean isEmpty()Description copied from interface:Stack
Checks whether the stack is empty.- Specified by:
isEmpty
in interfaceCollection<Double>
- Specified by:
isEmpty
in interfaceStack<Double>
- Overrides:
isEmpty
in classAbstractCollection<Double>
- Returns:
- true if the stack is empty.
-
toArray
public <T> T[] toArray(T[] a) - Specified by:
toArray
in interfaceCollection<Double>
- Overrides:
toArray
in classAbstractCollection<Double>
-
containsAll
Description copied from class:AbstractDoubleCollection
- Specified by:
containsAll
in interfaceCollection<Double>
- Overrides:
containsAll
in classAbstractDoubleCollection
-
addAll
Description copied from class:AbstractDoubleBigList
- Specified by:
addAll
in interfaceCollection<Double>
- Overrides:
addAll
in classAbstractDoubleBigList
-
removeAll
Description copied from class:AbstractDoubleCollection
- Specified by:
removeAll
in interfaceCollection<Double>
- Overrides:
removeAll
in classAbstractDoubleCollection
-
retainAll
Description copied from class:AbstractDoubleCollection
- Specified by:
retainAll
in interfaceCollection<Double>
- Overrides:
retainAll
in classAbstractDoubleCollection
-
clear
public void clear()Description copied from class:AbstractDoubleBigList
- Specified by:
clear
in interfaceCollection<Double>
- Overrides:
clear
in classAbstractDoubleBigList
-
hashCode
public int hashCode()Description copied from class:AbstractDoubleBigList
Returns the hash code for this big list, which is identical toList.hashCode()
.- Specified by:
hashCode
in interfaceCollection<Double>
- Overrides:
hashCode
in classAbstractDoubleBigList
- Returns:
- the hash code for this big list.
-