Class FloatBigLists.ListBigList
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.ListBigList
- All Implemented Interfaces:
BigList<Float>,FloatBigList,FloatCollection,FloatIterable,FloatStack,Size64,Stack<Float>,Serializable,Comparable<BigList<? extends Float>>,Iterable<Float>,Collection<Float>
- Enclosing class:
FloatBigLists
A class exposing a list as a 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 TypeMethodDescriptionbooleanadd(float key) Ensures that this collection contains the specified element (optional operation).voidadd(long index, float key) Inserts the specified element at the specified position in this type-specific big list (optional operation).booleanaddAll(long index, 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 index, 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 index, 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()booleancontains(float key) Returns true if this list contains the specified element.booleanChecks whether this collection contains all elements from the given type-specific collection.booleancontainsAll(Collection<?> c) floatgetFloat(long index) Returns the element at the specified position.inthashCode()Returns the hash code for this big list, which is identical toList.hashCode().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.booleanisEmpty()Checks whether the stack is empty.iterator()Returns a type-specific iterator on the elements of this collection.longlastIndexOf(float 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.booleanRemove from this collection all elements in the given type-specific collection.booleanremoveAll(Collection<?> c) voidremoveElements(long from, long to) Removes (hopefully quickly) elements of this type-specific big list.floatremoveFloat(long index) Removes the element at the specified position.booleanRetains in this collection only elements from the given type-specific collection.booleanretainAll(Collection<?> c) floatset(long index, float k) Replaces the element at the specified position in this big list with the specified element (optional operation).voidsize(long size) Sets the size of this big list.longsize64()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) float[]Returns a primitive type array containing the items of this collection.float[]toFloatArray(float[] a) Deprecated.Methods inherited from class it.unimi.dsi.fastutil.floats.AbstractFloatBigList
add, addElements, addElements, compareTo, doubleSpliterator, equals, forEach, get, getElements, indexOf, lastIndexOf, peek, peekFloat, pop, popFloat, push, push, rem, remove, set, setElements, size, top, topFloat, toStringMethods inherited from class it.unimi.dsi.fastutil.floats.AbstractFloatCollection
add, contains, remove, toArrayMethods inherited from class java.util.AbstractCollection
toArrayMethods inherited from interface java.util.Collection
toArray, toArrayMethods inherited from interface it.unimi.dsi.fastutil.floats.FloatBigList
addAll, addAll, getElements, setElements, setElements, spliteratorMethods inherited from interface it.unimi.dsi.fastutil.floats.FloatCollection
add, contains, doubleIterator, doubleParallelStream, doubleStream, parallelStream, remove, removeIf, removeIf, removeIf, stream, toArrayMethods inherited from interface it.unimi.dsi.fastutil.floats.FloatIterable
forEach, forEach
-
Method Details
-
size64
-
size
public void size(long size) Description copied from interface:BigListSets 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:
sizein interfaceBigList<Float>- Overrides:
sizein classAbstractFloatBigList- Parameters:
size- the new size.
-
iterator
Description copied from class:AbstractFloatBigListReturns a type-specific iterator on the elements of this collection.- Specified by:
iteratorin interfaceCollection<Float>- Specified by:
iteratorin interfaceFloatBigList- Specified by:
iteratorin interfaceFloatCollection- Specified by:
iteratorin interfaceFloatIterable- Specified by:
iteratorin interfaceIterable<Float>- Overrides:
iteratorin classAbstractFloatBigList- Returns:
- a type-specific iterator on the elements 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:
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:AbstractFloatBigListAdds all of the elements in the specified collection to this list (optional operation).- Specified by:
addAllin interfaceBigList<Float>- Overrides:
addAllin classAbstractFloatBigList- 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:
trueif this big list changed as a result of the call- See Also:
-
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:
-
contains
public boolean contains(float key) Description copied from class:AbstractFloatBigListReturns true if this list contains the specified element.- Specified by:
containsin interfaceFloatCollection- Overrides:
containsin 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:
-
removeElements
public void removeElements(long from, long to) Description copied from class:AbstractFloatBigListRemoves (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:
removeElementsin interfaceFloatBigList- Overrides:
removeElementsin classAbstractFloatBigList- Parameters:
from- the start index (inclusive).to- the end index (exclusive).
-
toFloatArray
Deprecated.Description copied from class:AbstractFloatCollectionReturns 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:
toFloatArrayin interfaceFloatCollection- Overrides:
toFloatArrayin classAbstractFloatCollection- 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: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:
-
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 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:
-
containsAll
Description copied from interface:FloatCollectionChecks whether this collection contains all elements from the given type-specific collection.- Specified by:
containsAllin interfaceFloatCollection- Overrides:
containsAllin classAbstractFloatCollection- Parameters:
c- a type-specific collection.- Returns:
trueif this collection contains all elements of the argument.- 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:
-
add
public void add(long index, float key) Description copied from class:AbstractFloatBigListInserts the specified element at the specified position in this type-specific big list (optional operation).- Specified by:
addin interfaceFloatBigList- Overrides:
addin classAbstractFloatBigList- See Also:
-
add
public boolean add(float key) Description copied from class:AbstractFloatBigListEnsures that this collection contains the specified element (optional operation).- Specified by:
addin interfaceFloatCollection- Overrides:
addin classAbstractFloatBigList- See Also:
-
getFloat
public float getFloat(long index) Description copied from interface:FloatBigListReturns the element at the specified position.- Specified by:
getFloatin interfaceFloatBigList- 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:
-
lastIndexOf
public long lastIndexOf(float k) Description copied from interface:FloatBigListReturns 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:
lastIndexOfin interfaceFloatBigList- Overrides:
lastIndexOfin classAbstractFloatBigList- See Also:
-
removeFloat
public float removeFloat(long index) Description copied from class:AbstractFloatBigListRemoves the element at the specified position.- Specified by:
removeFloatin interfaceFloatBigList- Overrides:
removeFloatin classAbstractFloatBigList- See Also:
-
set
public float set(long index, float k) Description copied from class:AbstractFloatBigListReplaces the element at the specified position in this big list with the specified element (optional operation).- Specified by:
setin interfaceFloatBigList- Overrides:
setin classAbstractFloatBigList- See Also:
-
isEmpty
public boolean isEmpty()Description copied from interface:StackChecks whether the stack is empty.- Specified by:
isEmptyin interfaceCollection<Float>- Specified by:
isEmptyin interfaceStack<Float>- Overrides:
isEmptyin classAbstractCollection<Float>- Returns:
- true if the stack is empty.
-
toArray
public <T> T[] toArray(T[] a) - Specified by:
toArrayin interfaceCollection<Float>- Overrides:
toArrayin classAbstractCollection<Float>
-
containsAll
Description copied from class:AbstractFloatCollection- Specified by:
containsAllin interfaceCollection<Float>- Overrides:
containsAllin classAbstractFloatCollection
-
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
-
clear
public void clear()Description copied from class:AbstractFloatBigList- Specified by:
clearin interfaceCollection<Float>- Overrides:
clearin classAbstractFloatBigList
-
hashCode
public int hashCode()Description copied from class:AbstractFloatBigListReturns the hash code for this big list, which is identical toList.hashCode().- Specified by:
hashCodein interfaceCollection<Float>- Overrides:
hashCodein classAbstractFloatBigList- Returns:
- the hash code for this big list.
-