Package it.unimi.dsi.fastutil.objects
Class ReferenceBigLists.ListBigList<K>
java.lang.Object
java.util.AbstractCollection<K>
it.unimi.dsi.fastutil.objects.AbstractReferenceCollection<K>
it.unimi.dsi.fastutil.objects.AbstractReferenceBigList<K>
it.unimi.dsi.fastutil.objects.ReferenceBigLists.ListBigList<K>
- All Implemented Interfaces:
BigList<K>
,ObjectIterable<K>
,ReferenceBigList<K>
,ReferenceCollection<K>
,Size64
,Stack<K>
,Serializable
,Iterable<K>
,Collection<K>
- Enclosing class:
ReferenceBigLists
public static class ReferenceBigLists.ListBigList<K>
extends AbstractReferenceBigList<K>
implements Serializable
A class exposing a list as a big list.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class it.unimi.dsi.fastutil.objects.AbstractReferenceBigList
AbstractReferenceBigList.ReferenceRandomAccessSubList<K>, AbstractReferenceBigList.ReferenceSubList<K>
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Inserts the specified element at the specified position in this big list (optional operation).boolean
boolean
addAll
(long index, Collection<? extends K> c) Adds all of the elements in the specified collection to this list (optional operation).boolean
addAll
(Collection<? extends K> c) void
clear()
boolean
Returns true if this list contains the specified element.boolean
containsAll
(Collection<?> c) get
(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
Returns the index of the first occurrence of the specified element in this big list, or -1 if this big list does not contain the element.boolean
isEmpty()
Checks whether the stack is empty.iterator()
Returns a type-specific iterator on the elements of this collection.long
Returns the index of the last occurrence of the specified element in this 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.remove
(long index) Removes the element at the specified position.boolean
removeAll
(Collection<?> c) void
removeElements
(long from, long to) Removes (hopefully quickly) elements of this type-specific big list.boolean
retainAll
(Collection<?> c) 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.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.Object[]
toArray()
<T> T[]
toArray
(T[] a) Methods inherited from class it.unimi.dsi.fastutil.objects.AbstractReferenceBigList
addElements, addElements, equals, forEach, getElements, peek, pop, push, setElements, size, top, toString
Methods inherited from class java.util.AbstractCollection
remove
Methods inherited from interface java.util.Collection
parallelStream, remove, removeIf, stream, toArray
Methods inherited from interface it.unimi.dsi.fastutil.objects.ReferenceBigList
addAll, addAll, addAll, addAll, getElements, setElements, setElements, spliterator
-
Method Details
-
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
. -
iterator
Description copied from class:AbstractReferenceBigList
Returns a type-specific iterator on the elements of this collection.- Specified by:
iterator
in interfaceCollection<K>
- Specified by:
iterator
in interfaceIterable<K>
- Specified by:
iterator
in interfaceObjectIterable<K>
- Specified by:
iterator
in interfaceReferenceBigList<K>
- Specified by:
iterator
in interfaceReferenceCollection<K>
- Overrides:
iterator
in classAbstractReferenceBigList<K>
- Returns:
- a type-specific iterator on the elements of this collection.
- See Also:
-
listIterator
Description copied from class:AbstractReferenceBigList
Returns a type-specific big-list iterator on this type-specific big list.- Specified by:
listIterator
in interfaceBigList<K>
- Specified by:
listIterator
in interfaceReferenceBigList<K>
- Overrides:
listIterator
in classAbstractReferenceBigList<K>
- Returns:
- a big-list iterator over the elements in this big list.
- See Also:
-
listIterator
Description copied from class:AbstractReferenceBigList
Returns a type-specific list iterator on this type-specific big list starting at a given index.- Specified by:
listIterator
in interfaceBigList<K>
- Specified by:
listIterator
in interfaceReferenceBigList<K>
- Overrides:
listIterator
in classAbstractReferenceBigList<K>
- 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:AbstractReferenceBigList
Adds all of the elements in the specified collection to this list (optional operation).- Specified by:
addAll
in interfaceBigList<K>
- Overrides:
addAll
in classAbstractReferenceBigList<K>
- 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:
-
subList
Description copied from interface:ReferenceBigList
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<K>
- Specified by:
subList
in interfaceReferenceBigList<K>
- Overrides:
subList
in classAbstractReferenceBigList<K>
- Parameters:
from
- the starting element (inclusive).to
- the ending element (exclusive).- Returns:
- a big sublist view of this big list.
- See Also:
-
contains
Description copied from class:AbstractReferenceBigList
Returns true if this list contains the specified element.- Specified by:
contains
in interfaceCollection<K>
- Overrides:
contains
in classAbstractReferenceBigList<K>
- See Also:
-
toArray
- Specified by:
toArray
in interfaceCollection<K>
- Overrides:
toArray
in classAbstractCollection<K>
-
removeElements
public void removeElements(long from, long to) Description copied from class:AbstractReferenceBigList
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 interfaceReferenceBigList<K>
- Overrides:
removeElements
in classAbstractReferenceBigList<K>
- Parameters:
from
- the start index (inclusive).to
- the end index (exclusive).
-
add
Description copied from class:AbstractReferenceBigList
Inserts the specified element at the specified position in this big list (optional operation). -
add
Description copied from class:AbstractReferenceBigList
- Specified by:
add
in interfaceCollection<K>
- Overrides:
add
in classAbstractReferenceBigList<K>
-
get
Description copied from interface:BigList
Returns the element at the specified position. -
indexOf
Description copied from interface:BigList
Returns the index of the first occurrence of the specified element in this big list, or -1 if this big list does not contain the element. -
lastIndexOf
Description copied from interface:BigList
Returns the index of the last occurrence of the specified element in this big list, or -1 if this big list does not contain the element.- Specified by:
lastIndexOf
in interfaceBigList<K>
- Overrides:
lastIndexOf
in classAbstractReferenceBigList<K>
- Parameters:
k
- the object to search for.- Returns:
- the index of the last occurrence of the specified element in this big list, or -1 if this big list does not contain the element.
- See Also:
-
remove
Description copied from class:AbstractReferenceBigList
Removes the element at the specified position. -
set
Description copied from class:AbstractReferenceBigList
Replaces the element at the specified position in this big list with the specified element (optional operation). -
isEmpty
public boolean isEmpty()Description copied from interface:Stack
Checks whether the stack is empty.- Specified by:
isEmpty
in interfaceCollection<K>
- Specified by:
isEmpty
in interfaceStack<K>
- Overrides:
isEmpty
in classAbstractCollection<K>
- Returns:
- true if the stack is empty.
-
toArray
public <T> T[] toArray(T[] a) - Specified by:
toArray
in interfaceCollection<K>
- Overrides:
toArray
in classAbstractCollection<K>
-
containsAll
- Specified by:
containsAll
in interfaceCollection<K>
- Overrides:
containsAll
in classAbstractCollection<K>
-
addAll
Description copied from class:AbstractReferenceBigList
- Specified by:
addAll
in interfaceCollection<K>
- Overrides:
addAll
in classAbstractReferenceBigList<K>
-
removeAll
- Specified by:
removeAll
in interfaceCollection<K>
- Overrides:
removeAll
in classAbstractCollection<K>
-
retainAll
- Specified by:
retainAll
in interfaceCollection<K>
- Overrides:
retainAll
in classAbstractCollection<K>
-
clear
public void clear()Description copied from class:AbstractReferenceBigList
- Specified by:
clear
in interfaceCollection<K>
- Overrides:
clear
in classAbstractReferenceBigList<K>
-
hashCode
public int hashCode()Description copied from class:AbstractReferenceBigList
Returns the hash code for this big list, which is identical toList.hashCode()
.- Specified by:
hashCode
in interfaceCollection<K>
- Overrides:
hashCode
in classAbstractReferenceBigList<K>
- Returns:
- the hash code for this big list.
-