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 TypeMethodDescriptionbooleanaddAll(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).booleanaddAll(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).booleanaddAll(long i, Collection<? extends Float> c) Adds all of the elements in the specified collection to this list (optional operation).booleanAppends all of the elements in the specified type-specific big list to the end of this type-specific big list (optional operation).booleanAdds all elements of the given type-specific collection to this collection.booleanaddAll(Collection<? extends Float> c) voidclear()clone()booleancontains(float k) Returns true if this list contains the specified element.floatgetFloat(long i) Returns the element at the specified position.longindexOf(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.booleanrem(float k) Removes a single instance of the specified element from this collection, if it is present (optional operation).booleanRemove from this collection all elements in the given type-specific collection.booleanremoveAll(Collection<?> c) floatremoveFloat(long i) Removes the element at the specified position.booleanRetains in this collection only elements from the given type-specific collection.booleanretainAll(Collection<?> c) longsize64()Returns the size of this data structure as a long.Returns a type-specific spliterator on the elements of this collection.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, toStringMethods inherited from class it.unimi.dsi.fastutil.floats.AbstractFloatCollection
add, contains, containsAll, containsAll, remove, toArray, toFloatArrayMethods inherited from class java.util.AbstractCollection
isEmpty, toArray, toArrayMethods inherited from interface java.util.Collection
containsAll, isEmpty, toArray, toArray, toArrayMethods inherited from interface it.unimi.dsi.fastutil.floats.FloatBigList
addAll, addAll, getElements, setElements, setElementsMethods inherited from interface it.unimi.dsi.fastutil.floats.FloatCollection
add, contains, containsAll, doubleIterator, doubleParallelStream, doubleStream, parallelStream, remove, removeIf, removeIf, removeIf, stream, toArray, toFloatArrayMethods inherited from interface it.unimi.dsi.fastutil.floats.FloatIterable
forEach, forEach
-
Method Details
-
getFloat
public float getFloat(long i) Description copied from interface:FloatBigListReturns the element at the specified position.- Specified by:
getFloatin interfaceFloatBigList- See Also:
-
rem
public boolean rem(float k) Description copied from class:AbstractFloatBigListRemoves a single instance of the specified element from this collection, if it is present (optional operation).- Specified by:
remin interfaceFloatCollection- Overrides:
remin classAbstractFloatBigList- See Also:
-
removeFloat
public float removeFloat(long i) Description copied from class:AbstractFloatBigListRemoves the element at the specified position.- Specified by:
removeFloatin interfaceFloatBigList- Overrides:
removeFloatin classAbstractFloatBigList- See Also:
-
contains
public boolean contains(float k) Description copied from class:AbstractFloatBigListReturns true if this list contains the specified element.- Specified by:
containsin interfaceFloatCollection- Overrides:
containsin classAbstractFloatBigList- See Also:
-
indexOf
public long indexOf(float k) Description copied from interface:FloatBigListReturns 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:
indexOfin interfaceFloatBigList- Overrides:
indexOfin classAbstractFloatBigList- See Also:
-
toFloatArray
public float[] toFloatArray()Description copied from interface:FloatCollectionReturns a primitive type array containing the items of this collection.- Specified by:
toFloatArrayin interfaceFloatCollection- Overrides:
toFloatArrayin classAbstractFloatCollection- Returns:
- a primitive type array containing the items of this collection.
- See Also:
-
listIterator
Description copied from class:AbstractFloatBigListReturns a type-specific big-list iterator on this type-specific big list.- Specified by:
listIteratorin interfaceBigList<Float>- Specified by:
listIteratorin interfaceFloatBigList- Overrides:
listIteratorin classAbstractFloatBigList- Returns:
- a big-list iterator over the elements in this big list.
- See Also:
-
listIterator
Description copied from class:AbstractFloatBigListReturns a type-specific list iterator on this type-specific big list starting at a given index.- Specified by:
listIteratorin interfaceBigList<Float>- Specified by:
listIteratorin interfaceFloatBigList- Overrides:
listIteratorin 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:FloatCollectionReturns a type-specific spliterator on the elements of this collection.See
Collection.spliterator()for more documentation on the requirements of the returned spliterator.- Specified by:
spliteratorin interfaceCollection<Float>- Specified by:
spliteratorin interfaceFloatBigList- Specified by:
spliteratorin interfaceFloatCollection- Specified by:
spliteratorin interfaceFloatIterable- Specified by:
spliteratorin interfaceIterable<Float>- Returns:
- a type-specific spliterator on the elements of this collection.
-
subList
Description copied from interface:FloatBigListReturns a type-specific view of the portion of this type-specific big list from the indexfrom, inclusive, to the indexto, exclusive.- Specified by:
subListin interfaceBigList<Float>- Specified by:
subListin interfaceFloatBigList- Overrides:
subListin 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:AbstractFloatBigListAdds all of the elements in the specified collection to this list (optional operation).- Specified by:
addAllin interfaceBigList<Float>- Overrides:
addAllin 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:
trueif this big list changed as a result of the call- See Also:
-
addAll
Description copied from class:AbstractFloatBigList- Specified by:
addAllin interfaceCollection<Float>- Overrides:
addAllin classAbstractFloatBigList
-
removeAll
Description copied from class:AbstractFloatCollection- Specified by:
removeAllin interfaceCollection<Float>- Overrides:
removeAllin classAbstractFloatCollection
-
retainAll
Description copied from class:AbstractFloatCollection- Specified by:
retainAllin interfaceCollection<Float>- Overrides:
retainAllin classAbstractFloatCollection
-
addAll
Description copied from interface:FloatBigListAppends all of the elements in the specified type-specific big list to the end of this type-specific big list (optional operation).- Specified by:
addAllin interfaceFloatBigList- See Also:
-
addAll
Description copied from interface:FloatBigListInserts 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:
addAllin interfaceFloatBigList- See Also:
-
addAll
Description copied from class:AbstractFloatBigListInserts all of the elements in the specified type-specific collection into this type-specific big list at the specified position (optional operation).- Specified by:
addAllin interfaceFloatBigList- Overrides:
addAllin classAbstractFloatBigList- See Also:
-
addAll
Description copied from class:AbstractFloatBigListAdds all elements of the given type-specific collection to this collection.- Specified by:
addAllin interfaceFloatCollection- Overrides:
addAllin classAbstractFloatBigList- Parameters:
c- a type-specific collection.- Returns:
trueif this collection changed as a result of the call.- See Also:
-
removeAll
Description copied from interface:FloatCollectionRemove from this collection all elements in the given type-specific collection.- Specified by:
removeAllin interfaceFloatCollection- Overrides:
removeAllin classAbstractFloatCollection- Parameters:
c- a type-specific collection.- Returns:
trueif this collection changed as a result of the call.- See Also:
-
retainAll
Description copied from interface:FloatCollectionRetains in this collection only elements from the given type-specific collection.- Specified by:
retainAllin interfaceFloatCollection- Overrides:
retainAllin classAbstractFloatCollection- Parameters:
c- a type-specific collection.- Returns:
trueif this collection changed as a result of the call.- See Also:
-
clear
public void clear()Description copied from class:AbstractFloatBigList- Specified by:
clearin interfaceCollection<Float>- Overrides:
clearin classAbstractFloatBigList
-
size64
-
clone
-