Package it.unimi.dsi.fastutil.doubles
Class DoubleBigLists.Singleton
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.Singleton
- All Implemented Interfaces:
BigList<Double>
,DoubleBigList
,DoubleCollection
,DoubleIterable
,DoubleStack
,Size64
,Stack<Double>
,Serializable
,Cloneable
,Comparable<BigList<? extends Double>>
,Iterable<Double>
,Collection<Double>
- Enclosing class:
DoubleBigLists
public static class DoubleBigLists.Singleton
extends AbstractDoubleBigList
implements Serializable, Cloneable
An immutable class representing a type-specific singleton big list.
This class may be useful to implement your own in case you subclass a type-specific 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
addAll
(long i, 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 i, 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 i, 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()
clone()
boolean
contains
(double k) Returns true if this list contains the specified element.double
getDouble
(long i) Returns the element at the specified position.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.Returns a type-specific big-list iterator on this type-specific big list.listIterator
(long i) Returns a type-specific list iterator on this type-specific big list starting at a given index.boolean
rem
(double k) Removes a single instance of the specified element from this collection, if it is present (optional operation).boolean
Remove from this collection all elements in the given type-specific collection.boolean
removeAll
(Collection<?> c) double
removeDouble
(long i) Removes the element at the specified position.boolean
Retains in this collection only elements from the given type-specific collection.boolean
retainAll
(Collection<?> c) long
size64()
Returns the size of this data structure as a long.Returns a type-specific spliterator on the elements of this big-list.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.double[]
Returns a primitive type array containing the items of this collection.Methods inherited from class it.unimi.dsi.fastutil.doubles.AbstractDoubleBigList
add, add, add, addElements, addElements, compareTo, equals, forEach, get, getElements, hashCode, indexOf, iterator, lastIndexOf, lastIndexOf, peek, peekDouble, pop, popDouble, push, push, remove, removeElements, set, set, setElements, size, size, top, topDouble, toString
Methods inherited from class it.unimi.dsi.fastutil.doubles.AbstractDoubleCollection
add, contains, containsAll, containsAll, forEach, remove, removeIf, toArray, toDoubleArray
Methods inherited from class java.util.AbstractCollection
isEmpty, toArray, toArray
Methods inherited from interface java.util.Collection
containsAll, isEmpty, toArray, toArray, toArray
Methods inherited from interface it.unimi.dsi.fastutil.doubles.DoubleBigList
addAll, addAll, getElements, setElements, setElements
Methods inherited from interface it.unimi.dsi.fastutil.doubles.DoubleCollection
add, contains, containsAll, doubleIterator, doubleParallelStream, doubleSpliterator, doubleStream, parallelStream, remove, removeIf, removeIf, removeIf, stream, toArray, toDoubleArray
Methods inherited from interface it.unimi.dsi.fastutil.doubles.DoubleIterable
forEach, forEach
-
Method Details
-
getDouble
public double getDouble(long i) Description copied from interface:DoubleBigList
Returns the element at the specified position.- Specified by:
getDouble
in interfaceDoubleBigList
- See Also:
-
rem
public boolean rem(double k) Description copied from class:AbstractDoubleBigList
Removes a single instance of the specified element from this collection, if it is present (optional operation).- Specified by:
rem
in interfaceDoubleCollection
- Overrides:
rem
in classAbstractDoubleBigList
- See Also:
-
removeDouble
public double removeDouble(long i) Description copied from class:AbstractDoubleBigList
Removes the element at the specified position.- Specified by:
removeDouble
in interfaceDoubleBigList
- Overrides:
removeDouble
in classAbstractDoubleBigList
- See Also:
-
contains
public boolean contains(double k) 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:
-
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:
-
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:
-
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:
i
- 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:
-
spliterator
Description copied from interface:DoubleBigList
Returns a type-specific spliterator on the elements of this big-list.BigList spliterators must report at least
Spliterator.SIZED
andSpliterator.ORDERED
.See
List.spliterator()
for more documentation on the requirements of the returned spliterator (despiteBigList
not being aList
, most of the same requirements apply.- Specified by:
spliterator
in interfaceCollection<Double>
- Specified by:
spliterator
in interfaceDoubleBigList
- Specified by:
spliterator
in interfaceDoubleCollection
- Specified by:
spliterator
in interfaceDoubleIterable
- Specified by:
spliterator
in interfaceIterable<Double>
- Returns:
- a type-specific spliterator on the elements of this collection.
-
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:
-
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:
i
- 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:
-
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
-
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:
-
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 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:
-
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:
-
clear
public void clear()Description copied from class:AbstractDoubleBigList
- Specified by:
clear
in interfaceCollection<Double>
- Overrides:
clear
in classAbstractDoubleBigList
-
size64
public long size64()Description copied from interface:Size64
Returns the size of this data structure as a long. -
clone
-