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
public static class FloatBigLists.ListBigList extends AbstractFloatBigList implements Serializable
A class exposing a list as a big list.- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class it.unimi.dsi.fastutil.floats.AbstractFloatBigList
AbstractFloatBigList.FloatSubList
-
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description boolean
add(float key)
Ensures that this collection contains the specified element (optional operation).void
add(long index, float key)
Inserts the specified element at the specified position in this type-specific big list (optional operation).boolean
addAll(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).boolean
addAll(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).boolean
addAll(long index, Collection<? extends Float> c)
Adds all of the elements in the specified collection to this list (optional operation).boolean
addAll(FloatBigList c)
Appends all of the elements in the specified type-specific big list to the end of this type-specific big list (optional operation).boolean
addAll(FloatCollection c)
Adds all elements of the given type-specific collection to this collection.boolean
addAll(Collection<? extends Float> c)
void
clear()
boolean
contains(float key)
Returns true if this list contains the specified element.boolean
containsAll(FloatCollection c)
Checks whether this collection contains all elements from the given type-specific collection.boolean
containsAll(Collection<?> c)
float
getFloat(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(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.boolean
isEmpty()
Checks whether the stack is empty.FloatBigListIterator
iterator()
Returns a type-specific iterator on the elements of this collection.long
lastIndexOf(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.FloatBigListIterator
listIterator()
Returns a type-specific big-list iterator on this type-specific big list.FloatBigListIterator
listIterator(long index)
Returns a type-specific list iterator on this type-specific big list starting at a given index.boolean
removeAll(FloatCollection c)
Remove from this collection all elements in the given type-specific collection.boolean
removeAll(Collection<?> c)
void
removeElements(long from, long to)
Removes (hopefully quickly) elements of this type-specific big list.float
removeFloat(long index)
Removes the element at the specified position.boolean
retainAll(FloatCollection c)
Retains in this collection only elements from the given type-specific collection.boolean
retainAll(Collection<?> c)
float
set(long index, float 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.FloatBigList
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[]
toFloatArray()
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, equals, get, getElements, indexOf, lastIndexOf, peek, peekFloat, pop, popFloat, push, push, rem, remove, set, size, top, topFloat, toString
-
Methods inherited from class it.unimi.dsi.fastutil.floats.AbstractFloatCollection
add, contains, remove, toArray
-
Methods inherited from class java.util.AbstractCollection
toArray
-
Methods inherited from interface java.util.Collection
parallelStream, spliterator, stream, toArray, toArray
-
Methods inherited from interface it.unimi.dsi.fastutil.floats.FloatCollection
add, contains, remove, removeIf, removeIf, toArray
-
Methods inherited from interface it.unimi.dsi.fastutil.floats.FloatIterable
forEach, forEach
-
-
-
-
Method Detail
-
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<Float>
- Overrides:
size
in classAbstractFloatBigList
- Parameters:
size
- the new size.
-
iterator
public FloatBigListIterator iterator()
Description copied from class:AbstractFloatBigList
Returns a type-specific iterator on the elements of this collection.Note that this specification strengthens the one given in
Iterable.iterator()
, which was already strengthened in the corresponding type-specific class, but was weakened by the fact that this interface extendsCollection
.This implementation delegates to
AbstractFloatBigList.listIterator()
.- Specified by:
iterator
in interfaceCollection<Float>
- Specified by:
iterator
in interfaceFloatBigList
- Specified by:
iterator
in interfaceFloatCollection
- Specified by:
iterator
in interfaceFloatIterable
- Specified by:
iterator
in interfaceIterable<Float>
- Overrides:
iterator
in classAbstractFloatBigList
- Returns:
- a type-specific iterator on the elements of this collection.
- See Also:
Iterable.iterator()
-
listIterator
public FloatBigListIterator listIterator()
Description copied from class:AbstractFloatBigList
Returns a type-specific big-list iterator on this type-specific big list.Note that this specification strengthens the one given in
BigList.listIterator()
.This implementation delegates to
listIterator(0)
.- 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:
BigList.listIterator()
-
listIterator
public FloatBigListIterator listIterator(long index)
Description copied from class:AbstractFloatBigList
Returns a type-specific list iterator on this type-specific big list starting at a given index.Note that this specification strengthens the one given in
BigList.listIterator(long)
.This implementation is based on the random-access methods.
- Specified by:
listIterator
in interfaceBigList<Float>
- Specified by:
listIterator
in interfaceFloatBigList
- Overrides:
listIterator
in 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:
BigList.listIterator(long)
-
addAll
public boolean addAll(long index, Collection<? extends Float> c)
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:
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:
List.addAll(int, Collection)
-
subList
public FloatBigList subList(long from, long to)
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.Note that this specification strengthens the one given in
BigList.subList(long,long)
.- 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:
BigList.subList(long,long)
-
contains
public boolean contains(float key)
Description copied from class:AbstractFloatBigList
Returns true if this list contains the specified element.This implementation delegates to
indexOf()
.- Specified by:
contains
in interfaceFloatCollection
- Overrides:
contains
in classAbstractFloatBigList
- See Also:
Collection.contains(Object)
-
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:
Collection.toArray()
-
removeElements
public void removeElements(long from, long to)
Description copied from class:AbstractFloatBigList
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 interfaceFloatBigList
- Overrides:
removeElements
in classAbstractFloatBigList
- Parameters:
from
- the start index (inclusive).to
- the end index (exclusive).
-
toFloatArray
@Deprecated public float[] toFloatArray(float[] a)
Deprecated.Description copied from class:AbstractFloatCollection
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:
toFloatArray
in interfaceFloatCollection
- Overrides:
toFloatArray
in 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:
Collection.toArray(Object[])
-
addAll
public boolean addAll(long index, FloatCollection c)
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).This implementation delegates to the type-specific version of
AbstractFloatBigList.addAll(long, Collection)
.- Specified by:
addAll
in interfaceFloatBigList
- Overrides:
addAll
in classAbstractFloatBigList
- See Also:
List.addAll(int,java.util.Collection)
-
addAll
public boolean addAll(FloatCollection c)
Description copied from class:AbstractFloatBigList
Adds all elements of the given type-specific collection to this collection.This implementation delegates to the type-specific version of
AbstractFloatBigList.addAll(long, 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:
Collection.addAll(Collection)
-
addAll
public boolean addAll(long index, FloatBigList c)
Description copied from class:AbstractFloatBigList
Inserts all of the elements in the specified type-specific big list into this type-specific big list at the specified position (optional operation).This implementation delegates to the type-specific version of
AbstractFloatBigList.addAll(long, Collection)
.- Specified by:
addAll
in interfaceFloatBigList
- Overrides:
addAll
in classAbstractFloatBigList
- See Also:
List.addAll(int,java.util.Collection)
-
addAll
public boolean addAll(FloatBigList c)
Description copied from class:AbstractFloatBigList
Appends all of the elements in the specified type-specific big list to the end of this type-specific big list (optional operation).This implementation delegates to the type-specific list version of
AbstractFloatBigList.addAll(long, Collection)
.- Specified by:
addAll
in interfaceFloatBigList
- Overrides:
addAll
in classAbstractFloatBigList
- See Also:
List.addAll(int,java.util.Collection)
-
containsAll
public boolean containsAll(FloatCollection c)
Description copied from interface:FloatCollection
Checks whether this collection contains all elements from the given type-specific collection.- Specified by:
containsAll
in interfaceFloatCollection
- Overrides:
containsAll
in classAbstractFloatCollection
- Parameters:
c
- a type-specific collection.- Returns:
true
if this collection contains all elements of the argument.- See Also:
Collection.containsAll(Collection)
-
removeAll
public boolean removeAll(FloatCollection c)
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:
Collection.removeAll(Collection)
-
retainAll
public boolean retainAll(FloatCollection c)
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:
Collection.retainAll(Collection)
-
add
public void add(long index, float key)
Description copied from class:AbstractFloatBigList
Inserts the specified element at the specified position in this type-specific big list (optional operation).This implementation always throws an
UnsupportedOperationException
.- Specified by:
add
in interfaceFloatBigList
- Overrides:
add
in classAbstractFloatBigList
- See Also:
BigList.add(long,Object)
-
add
public boolean add(float key)
Description copied from class:AbstractFloatBigList
Ensures that this collection contains the specified element (optional operation).This implementation always throws an
UnsupportedOperationException
.This implementation delegates to the type-specific version of
BigList.add(long, Object)
.- Specified by:
add
in interfaceFloatCollection
- Overrides:
add
in classAbstractFloatBigList
- See Also:
Collection.add(Object)
-
getFloat
public float getFloat(long index)
Description copied from interface:FloatBigList
Returns the element at the specified position.- Specified by:
getFloat
in interfaceFloatBigList
- See Also:
BigList.get(long)
-
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:
BigList.indexOf(Object)
-
lastIndexOf
public long lastIndexOf(float k)
Description copied from interface:FloatBigList
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 interfaceFloatBigList
- Overrides:
lastIndexOf
in classAbstractFloatBigList
- See Also:
BigList.lastIndexOf(Object)
-
removeFloat
public float removeFloat(long index)
Description copied from class:AbstractFloatBigList
Removes the element at the specified position.This implementation always throws an
UnsupportedOperationException
.- Specified by:
removeFloat
in interfaceFloatBigList
- Overrides:
removeFloat
in classAbstractFloatBigList
- See Also:
BigList.remove(long)
-
set
public float set(long index, float k)
Description copied from class:AbstractFloatBigList
Replaces the element at the specified position in this big list with the specified element (optional operation).This implementation always throws an
UnsupportedOperationException
.- Specified by:
set
in interfaceFloatBigList
- Overrides:
set
in classAbstractFloatBigList
- See Also:
BigList.set(long,Object)
-
isEmpty
public boolean isEmpty()
Description copied from interface:Stack
Checks whether the stack is empty.- Specified by:
isEmpty
in interfaceCollection<Float>
- Specified by:
isEmpty
in interfaceStack<Float>
- Overrides:
isEmpty
in classAbstractCollection<Float>
- Returns:
- true if the stack is empty.
-
toArray
public <T> T[] toArray(T[] a)
- Specified by:
toArray
in interfaceCollection<Float>
- Overrides:
toArray
in classAbstractCollection<Float>
-
containsAll
public boolean containsAll(Collection<?> c)
Description copied from class:AbstractFloatCollection
This implementation delegates to the type-specific version if given a type-specific collection, otherwise is uses the implementation from
AbstractCollection
.- Specified by:
containsAll
in interfaceCollection<Float>
- Overrides:
containsAll
in classAbstractFloatCollection
-
addAll
public boolean addAll(Collection<? extends Float> c)
Description copied from class:AbstractFloatBigList
This implementation delegates to the type-specific version if given a type-specific collection, otherwise is uses the implementation from
AbstractCollection
.This implementation delegates to the type-specific version of
BigList.addAll(long, Collection)
.- Specified by:
addAll
in interfaceCollection<Float>
- Overrides:
addAll
in classAbstractFloatBigList
-
removeAll
public boolean removeAll(Collection<?> c)
Description copied from class:AbstractFloatCollection
This implementation delegates to the type-specific version if given a type-specific collection, otherwise is uses the implementation from
AbstractCollection
.- Specified by:
removeAll
in interfaceCollection<Float>
- Overrides:
removeAll
in classAbstractFloatCollection
-
retainAll
public boolean retainAll(Collection<?> c)
Description copied from class:AbstractFloatCollection
This implementation delegates to the type-specific version if given a type-specific collection, otherwise is uses the implementation from
AbstractCollection
.- Specified by:
retainAll
in interfaceCollection<Float>
- Overrides:
retainAll
in classAbstractFloatCollection
-
clear
public void clear()
Description copied from class:AbstractFloatBigList
This implementation delegates to
AbstractFloatBigList.removeElements(long, long)
.- Specified by:
clear
in interfaceCollection<Float>
- Overrides:
clear
in classAbstractFloatBigList
-
hashCode
public int hashCode()
Description copied from class:AbstractFloatBigList
Returns the hash code for this big list, which is identical toList.hashCode()
.- Specified by:
hashCode
in interfaceCollection<Float>
- Overrides:
hashCode
in classAbstractFloatBigList
- Returns:
- the hash code for this big list.
-
-