Package it.unimi.dsi.fastutil.floats
Class FloatBigLists.Singleton
java.lang.Object
java.util.AbstractCollection<Float>
it.unimi.dsi.fastutil.floats.AbstractFloatCollection
it.unimi.dsi.fastutil.floats.AbstractFloatBigList
it.unimi.dsi.fastutil.floats.FloatBigLists.Singleton
- All Implemented Interfaces:
BigList<Float>
,FloatBigList
,FloatCollection
,FloatIterable
,FloatStack
,Size64
,Stack<Float>
,Serializable
,Cloneable
,Comparable<BigList<? extends Float>>
,Iterable<Float>
,Collection<Float>
- Enclosing class:
FloatBigLists
public static class FloatBigLists.Singleton
extends AbstractFloatBigList
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.floats.AbstractFloatBigList
AbstractFloatBigList.FloatRandomAccessSubList, AbstractFloatBigList.FloatSubList
-
Method Summary
Modifier and TypeMethodDescriptionboolean
addAll
(long i, FloatBigList 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, FloatCollection 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 Float> 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 Float> c) void
clear()
clone()
boolean
contains
(float k) Returns true if this list contains the specified element.float
getFloat
(long i) Returns the element at the specified position.long
indexOf
(float 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
(float 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) float
removeFloat
(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.float[]
Returns a primitive type array containing the items of this collection.Methods inherited from class it.unimi.dsi.fastutil.floats.AbstractFloatBigList
add, add, add, addElements, addElements, compareTo, doubleSpliterator, equals, forEach, get, getElements, hashCode, indexOf, iterator, lastIndexOf, lastIndexOf, peek, peekFloat, pop, popFloat, push, push, remove, removeElements, set, set, setElements, size, size, top, topFloat, toString
Methods inherited from class it.unimi.dsi.fastutil.floats.AbstractFloatCollection
add, contains, containsAll, containsAll, remove, toArray, toFloatArray
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.floats.FloatBigList
addAll, addAll, getElements, setElements, setElements
Methods inherited from interface it.unimi.dsi.fastutil.floats.FloatCollection
add, contains, containsAll, doubleIterator, doubleParallelStream, doubleStream, parallelStream, remove, removeIf, removeIf, removeIf, stream, toArray, toFloatArray
Methods inherited from interface it.unimi.dsi.fastutil.floats.FloatIterable
forEach, forEach
-
Method Details
-
getFloat
public float getFloat(long i) Description copied from interface:FloatBigList
Returns the element at the specified position.- Specified by:
getFloat
in interfaceFloatBigList
- See Also:
-
rem
public boolean rem(float k) Description copied from class:AbstractFloatBigList
Removes a single instance of the specified element from this collection, if it is present (optional operation).- Specified by:
rem
in interfaceFloatCollection
- Overrides:
rem
in classAbstractFloatBigList
- See Also:
-
removeFloat
public float removeFloat(long i) Description copied from class:AbstractFloatBigList
Removes the element at the specified position.- Specified by:
removeFloat
in interfaceFloatBigList
- Overrides:
removeFloat
in classAbstractFloatBigList
- See Also:
-
contains
public boolean contains(float k) Description copied from class:AbstractFloatBigList
Returns true if this list contains the specified element.- Specified by:
contains
in interfaceFloatCollection
- Overrides:
contains
in classAbstractFloatBigList
- See Also:
-
indexOf
public long indexOf(float k) Description copied from interface:FloatBigList
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 interfaceFloatBigList
- Overrides:
indexOf
in classAbstractFloatBigList
- See Also:
-
toFloatArray
public float[] toFloatArray()Description copied from interface:FloatCollection
Returns a primitive type array containing the items of this collection.- Specified by:
toFloatArray
in interfaceFloatCollection
- Overrides:
toFloatArray
in classAbstractFloatCollection
- Returns:
- a primitive type array containing the items of this collection.
- See Also:
-
listIterator
Description copied from class:AbstractFloatBigList
Returns a type-specific big-list iterator on this type-specific big list.- Specified by:
listIterator
in interfaceBigList<Float>
- Specified by:
listIterator
in interfaceFloatBigList
- Overrides:
listIterator
in classAbstractFloatBigList
- Returns:
- a big-list iterator over the elements in this big list.
- See Also:
-
listIterator
Description copied from class:AbstractFloatBigList
Returns a type-specific list iterator on this type-specific big list starting at a given index.- Specified by:
listIterator
in interfaceBigList<Float>
- Specified by:
listIterator
in interfaceFloatBigList
- Overrides:
listIterator
in classAbstractFloatBigList
- 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:FloatBigList
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<Float>
- Specified by:
spliterator
in interfaceFloatBigList
- Specified by:
spliterator
in interfaceFloatCollection
- Specified by:
spliterator
in interfaceFloatIterable
- Specified by:
spliterator
in interfaceIterable<Float>
- Returns:
- a type-specific spliterator on the elements of this collection.
-
subList
Description copied from interface:FloatBigList
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<Float>
- Specified by:
subList
in interfaceFloatBigList
- Overrides:
subList
in classAbstractFloatBigList
- 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:AbstractFloatBigList
Adds all of the elements in the specified collection to this list (optional operation).- Specified by:
addAll
in interfaceBigList<Float>
- Overrides:
addAll
in classAbstractFloatBigList
- 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:AbstractFloatBigList
- Specified by:
addAll
in interfaceCollection<Float>
- Overrides:
addAll
in classAbstractFloatBigList
-
removeAll
Description copied from class:AbstractFloatCollection
- Specified by:
removeAll
in interfaceCollection<Float>
- Overrides:
removeAll
in classAbstractFloatCollection
-
retainAll
Description copied from class:AbstractFloatCollection
- Specified by:
retainAll
in interfaceCollection<Float>
- Overrides:
retainAll
in classAbstractFloatCollection
-
addAll
Description copied from interface:FloatBigList
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 interfaceFloatBigList
- See Also:
-
addAll
Description copied from interface:FloatBigList
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 interfaceFloatBigList
- See Also:
-
addAll
Description copied from class:AbstractFloatBigList
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 interfaceFloatBigList
- Overrides:
addAll
in classAbstractFloatBigList
- See Also:
-
addAll
Description copied from class:AbstractFloatBigList
Adds all elements of the given type-specific collection to this collection.- Specified by:
addAll
in interfaceFloatCollection
- Overrides:
addAll
in classAbstractFloatBigList
- 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:FloatCollection
Remove from this collection all elements in the given type-specific collection.- Specified by:
removeAll
in interfaceFloatCollection
- Overrides:
removeAll
in classAbstractFloatCollection
- 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:FloatCollection
Retains in this collection only elements from the given type-specific collection.- Specified by:
retainAll
in interfaceFloatCollection
- Overrides:
retainAll
in classAbstractFloatCollection
- 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:AbstractFloatBigList
- Specified by:
clear
in interfaceCollection<Float>
- Overrides:
clear
in classAbstractFloatBigList
-
size64
public long size64()Description copied from interface:Size64
Returns the size of this data structure as a long. -
clone
-