Package it.unimi.dsi.fastutil.objects
Class ObjectBigLists.ListBigList<K>
java.lang.Object
java.util.AbstractCollection<K>
it.unimi.dsi.fastutil.objects.AbstractObjectCollection<K>
it.unimi.dsi.fastutil.objects.AbstractObjectBigList<K>
it.unimi.dsi.fastutil.objects.ObjectBigLists.ListBigList<K>
- All Implemented Interfaces:
BigList<K>,ObjectBigList<K>,ObjectCollection<K>,ObjectIterable<K>,Size64,Stack<K>,Serializable,Comparable<BigList<? extends K>>,Iterable<K>,Collection<K>
- Enclosing class:
- ObjectBigLists
public static class ObjectBigLists.ListBigList<K>
extends AbstractObjectBigList<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.AbstractObjectBigList
AbstractObjectBigList.ObjectRandomAccessSubList<K>, AbstractObjectBigList.ObjectSubList<K> -
Method Summary
Modifier and TypeMethodDescriptionvoidInserts the specified element at the specified position in this big list (optional operation).booleanbooleanaddAll(long index, Collection<? extends K> c) Adds all of the elements in the specified collection to this list (optional operation).booleanaddAll(Collection<? extends K> c) voidclear()booleanReturns true if this list contains the specified element.booleancontainsAll(Collection<?> c) get(long index) Returns the element at the specified position.inthashCode()Returns the hash code for this big list, which is identical toList.hashCode().longReturns 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.booleanisEmpty()Checks whether the stack is empty.iterator()Returns a type-specific iterator on the elements of this collection.longReturns 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.booleanremoveAll(Collection<?> c) voidremoveElements(long from, long to) Removes (hopefully quickly) elements of this type-specific big list.booleanretainAll(Collection<?> c) 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.Object[]toArray()<T> T[]toArray(T[] a) Methods inherited from class it.unimi.dsi.fastutil.objects.AbstractObjectBigList
addElements, addElements, compareTo, equals, forEach, getElements, peek, pop, push, setElements, size, top, toStringMethods inherited from class java.util.AbstractCollection
removeMethods inherited from interface java.util.Collection
parallelStream, remove, removeIf, stream, toArrayMethods inherited from interface it.unimi.dsi.fastutil.objects.ObjectBigList
addAll, addAll, addAll, addAll, getElements, setElements, setElements, spliterator
-
Method Details
-
size64
public long size64()Description copied from interface:Size64Returns the size of this data structure as a long. -
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. -
iterator
Description copied from class:AbstractObjectBigListReturns a type-specific iterator on the elements of this collection.- Specified by:
iteratorin interfaceCollection<K>- Specified by:
iteratorin interfaceIterable<K>- Specified by:
iteratorin interfaceObjectBigList<K>- Specified by:
iteratorin interfaceObjectCollection<K>- Specified by:
iteratorin interfaceObjectIterable<K>- Overrides:
iteratorin classAbstractObjectBigList<K>- Returns:
- a type-specific iterator on the elements of this collection.
- See Also:
-
listIterator
Description copied from class:AbstractObjectBigListReturns a type-specific big-list iterator on this type-specific big list.- Specified by:
listIteratorin interfaceBigList<K>- Specified by:
listIteratorin interfaceObjectBigList<K>- Overrides:
listIteratorin classAbstractObjectBigList<K>- Returns:
- a big-list iterator over the elements in this big list.
- See Also:
-
listIterator
Description copied from class:AbstractObjectBigListReturns a type-specific list iterator on this type-specific big list starting at a given index.- Specified by:
listIteratorin interfaceBigList<K>- Specified by:
listIteratorin interfaceObjectBigList<K>- Overrides:
listIteratorin classAbstractObjectBigList<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:AbstractObjectBigListAdds all of the elements in the specified collection to this list (optional operation).- Specified by:
addAllin interfaceBigList<K>- Overrides:
addAllin classAbstractObjectBigList<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:
trueif this big list changed as a result of the call- See Also:
-
subList
Description copied from interface:ObjectBigListReturns 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<K>- Specified by:
subListin interfaceObjectBigList<K>- Overrides:
subListin classAbstractObjectBigList<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:AbstractObjectBigListReturns true if this list contains the specified element.- Specified by:
containsin interfaceCollection<K>- Overrides:
containsin classAbstractObjectBigList<K>- See Also:
-
toArray
- Specified by:
toArrayin interfaceCollection<K>- Overrides:
toArrayin classAbstractCollection<K>
-
removeElements
public void removeElements(long from, long to) Description copied from class:AbstractObjectBigListRemoves (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 interfaceObjectBigList<K>- Overrides:
removeElementsin classAbstractObjectBigList<K>- Parameters:
from- the start index (inclusive).to- the end index (exclusive).
-
add
Description copied from class:AbstractObjectBigListInserts the specified element at the specified position in this big list (optional operation). -
add
Description copied from class:AbstractObjectBigList- Specified by:
addin interfaceCollection<K>- Overrides:
addin classAbstractObjectBigList<K>
-
get
Description copied from interface:BigListReturns the element at the specified position. -
indexOf
Description copied from interface:BigListReturns 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:BigListReturns 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:
lastIndexOfin interfaceBigList<K>- Overrides:
lastIndexOfin classAbstractObjectBigList<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:AbstractObjectBigListRemoves the element at the specified position. -
set
Description copied from class:AbstractObjectBigListReplaces the element at the specified position in this big list with the specified element (optional operation). -
isEmpty
public boolean isEmpty()Description copied from interface:StackChecks whether the stack is empty.- Specified by:
isEmptyin interfaceCollection<K>- Specified by:
isEmptyin interfaceStack<K>- Overrides:
isEmptyin classAbstractCollection<K>- Returns:
- true if the stack is empty.
-
toArray
public <T> T[] toArray(T[] a) - Specified by:
toArrayin interfaceCollection<K>- Overrides:
toArrayin classAbstractCollection<K>
-
containsAll
- Specified by:
containsAllin interfaceCollection<K>- Overrides:
containsAllin classAbstractCollection<K>
-
addAll
Description copied from class:AbstractObjectBigList- Specified by:
addAllin interfaceCollection<K>- Overrides:
addAllin classAbstractObjectBigList<K>
-
removeAll
- Specified by:
removeAllin interfaceCollection<K>- Overrides:
removeAllin classAbstractCollection<K>
-
retainAll
- Specified by:
retainAllin interfaceCollection<K>- Overrides:
retainAllin classAbstractCollection<K>
-
clear
public void clear()Description copied from class:AbstractObjectBigList- Specified by:
clearin interfaceCollection<K>- Overrides:
clearin classAbstractObjectBigList<K>
-
hashCode
public int hashCode()Description copied from class:AbstractObjectBigListReturns the hash code for this big list, which is identical toList.hashCode().- Specified by:
hashCodein interfaceCollection<K>- Overrides:
hashCodein classAbstractObjectBigList<K>- Returns:
- the hash code for this big list.
-