Class IntBigLists.ListBigList
java.lang.Object
java.util.AbstractCollection<Integer>
it.unimi.dsi.fastutil.ints.AbstractIntCollection
it.unimi.dsi.fastutil.ints.AbstractIntBigList
it.unimi.dsi.fastutil.ints.IntBigLists.ListBigList
- All Implemented Interfaces:
BigList<Integer>,IntBigList,IntCollection,IntIterable,IntStack,Size64,Stack<Integer>,Serializable,Comparable<BigList<? extends Integer>>,Iterable<Integer>,Collection<Integer>
- Enclosing class:
IntBigLists
A class exposing a list as a big list.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class it.unimi.dsi.fastutil.ints.AbstractIntBigList
AbstractIntBigList.IntRandomAccessSubList, AbstractIntBigList.IntSubList -
Method Summary
Modifier and TypeMethodDescriptionbooleanadd(int key) Ensures that this collection contains the specified element (optional operation).voidadd(long index, int key) Inserts the specified element at the specified position in this type-specific big list (optional operation).booleanaddAll(long index, IntBigList 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, IntCollection 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 Integer> c) Adds all of the elements in the specified collection to this list (optional operation).booleanaddAll(IntBigList c) Appends 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 Integer> c) voidclear()booleancontains(int 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) intgetInt(long index) Returns the element at the specified position.inthashCode()Returns the hash code for this big list, which is identical toList.hashCode().longindexOf(int 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(int 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.intremoveInt(long index) Removes the element at the specified position.booleanRetains in this collection only elements from the given type-specific collection.booleanretainAll(Collection<?> c) intset(long index, int 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) int[]Returns a primitive type array containing the items of this collection.int[]toIntArray(int[] a) Deprecated.Methods inherited from class it.unimi.dsi.fastutil.ints.AbstractIntBigList
add, addElements, addElements, compareTo, equals, forEach, get, getElements, indexOf, lastIndexOf, peek, peekInt, pop, popInt, push, push, rem, remove, set, setElements, size, top, topInt, toStringMethods inherited from class it.unimi.dsi.fastutil.ints.AbstractIntCollection
add, contains, forEach, remove, removeIf, toArrayMethods inherited from class java.util.AbstractCollection
toArrayMethods inherited from interface java.util.Collection
toArray, toArrayMethods inherited from interface it.unimi.dsi.fastutil.ints.IntBigList
addAll, addAll, getElements, setElements, setElements, spliteratorMethods inherited from interface it.unimi.dsi.fastutil.ints.IntCollection
add, contains, intIterator, intParallelStream, intSpliterator, intStream, parallelStream, remove, removeIf, removeIf, removeIf, stream, toArrayMethods inherited from interface it.unimi.dsi.fastutil.ints.IntIterable
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<Integer>- Overrides:
sizein classAbstractIntBigList- Parameters:
size- the new size.
-
iterator
Description copied from class:AbstractIntBigListReturns a type-specific iterator on the elements of this collection.- Specified by:
iteratorin interfaceCollection<Integer>- Specified by:
iteratorin interfaceIntBigList- Specified by:
iteratorin interfaceIntCollection- Specified by:
iteratorin interfaceIntIterable- Specified by:
iteratorin interfaceIterable<Integer>- Overrides:
iteratorin classAbstractIntBigList- Returns:
- a type-specific iterator on the elements of this collection.
- See Also:
-
listIterator
Description copied from class:AbstractIntBigListReturns a type-specific big-list iterator on this type-specific big list.- Specified by:
listIteratorin interfaceBigList<Integer>- Specified by:
listIteratorin interfaceIntBigList- Overrides:
listIteratorin classAbstractIntBigList- Returns:
- a big-list iterator over the elements in this big list.
- See Also:
-
listIterator
Description copied from class:AbstractIntBigListReturns a type-specific list iterator on this type-specific big list starting at a given index.- Specified by:
listIteratorin interfaceBigList<Integer>- Specified by:
listIteratorin interfaceIntBigList- Overrides:
listIteratorin classAbstractIntBigList- 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:AbstractIntBigListAdds all of the elements in the specified collection to this list (optional operation).- Specified by:
addAllin interfaceBigList<Integer>- Overrides:
addAllin classAbstractIntBigList- 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:IntBigListReturns 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<Integer>- Specified by:
subListin interfaceIntBigList- Overrides:
subListin classAbstractIntBigList- 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(int key) Description copied from class:AbstractIntBigListReturns true if this list contains the specified element.- Specified by:
containsin interfaceIntCollection- Overrides:
containsin classAbstractIntBigList- See Also:
-
toIntArray
public int[] toIntArray()Description copied from interface:IntCollectionReturns a primitive type array containing the items of this collection.- Specified by:
toIntArrayin interfaceIntCollection- Overrides:
toIntArrayin classAbstractIntCollection- 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:AbstractIntBigListRemoves (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 interfaceIntBigList- Overrides:
removeElementsin classAbstractIntBigList- Parameters:
from- the start index (inclusive).to- the end index (exclusive).
-
toIntArray
Deprecated.Description copied from class:AbstractIntCollectionReturns 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:
toIntArrayin interfaceIntCollection- Overrides:
toIntArrayin classAbstractIntCollection- 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:AbstractIntBigListInserts 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 interfaceIntBigList- Overrides:
addAllin classAbstractIntBigList- See Also:
-
addAll
Description copied from class:AbstractIntBigListAdds all elements of the given type-specific collection to this collection.- Specified by:
addAllin interfaceIntCollection- Overrides:
addAllin classAbstractIntBigList- Parameters:
c- a type-specific collection.- Returns:
trueif this collection changed as a result of the call.- See Also:
-
addAll
Description copied from interface:IntBigListInserts 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 interfaceIntBigList- See Also:
-
addAll
Description copied from interface:IntBigListAppends 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 interfaceIntBigList- See Also:
-
containsAll
Description copied from interface:IntCollectionChecks whether this collection contains all elements from the given type-specific collection.- Specified by:
containsAllin interfaceIntCollection- Overrides:
containsAllin classAbstractIntCollection- Parameters:
c- a type-specific collection.- Returns:
trueif this collection contains all elements of the argument.- See Also:
-
removeAll
Description copied from interface:IntCollectionRemove from this collection all elements in the given type-specific collection.- Specified by:
removeAllin interfaceIntCollection- Overrides:
removeAllin classAbstractIntCollection- Parameters:
c- a type-specific collection.- Returns:
trueif this collection changed as a result of the call.- See Also:
-
retainAll
Description copied from interface:IntCollectionRetains in this collection only elements from the given type-specific collection.- Specified by:
retainAllin interfaceIntCollection- Overrides:
retainAllin classAbstractIntCollection- 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, int key) Description copied from class:AbstractIntBigListInserts the specified element at the specified position in this type-specific big list (optional operation).- Specified by:
addin interfaceIntBigList- Overrides:
addin classAbstractIntBigList- See Also:
-
add
public boolean add(int key) Description copied from class:AbstractIntBigListEnsures that this collection contains the specified element (optional operation).- Specified by:
addin interfaceIntCollection- Overrides:
addin classAbstractIntBigList- See Also:
-
getInt
public int getInt(long index) Description copied from interface:IntBigListReturns the element at the specified position.- Specified by:
getIntin interfaceIntBigList- See Also:
-
indexOf
public long indexOf(int k) Description copied from interface:IntBigListReturns 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 interfaceIntBigList- Overrides:
indexOfin classAbstractIntBigList- See Also:
-
lastIndexOf
public long lastIndexOf(int k) Description copied from interface:IntBigListReturns 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 interfaceIntBigList- Overrides:
lastIndexOfin classAbstractIntBigList- See Also:
-
removeInt
public int removeInt(long index) Description copied from class:AbstractIntBigListRemoves the element at the specified position.- Specified by:
removeIntin interfaceIntBigList- Overrides:
removeIntin classAbstractIntBigList- See Also:
-
set
public int set(long index, int k) Description copied from class:AbstractIntBigListReplaces the element at the specified position in this big list with the specified element (optional operation).- Specified by:
setin interfaceIntBigList- Overrides:
setin classAbstractIntBigList- See Also:
-
isEmpty
public boolean isEmpty()Description copied from interface:StackChecks whether the stack is empty.- Specified by:
isEmptyin interfaceCollection<Integer>- Specified by:
isEmptyin interfaceStack<Integer>- Overrides:
isEmptyin classAbstractCollection<Integer>- Returns:
- true if the stack is empty.
-
toArray
public <T> T[] toArray(T[] a) - Specified by:
toArrayin interfaceCollection<Integer>- Overrides:
toArrayin classAbstractCollection<Integer>
-
containsAll
Description copied from class:AbstractIntCollection- Specified by:
containsAllin interfaceCollection<Integer>- Overrides:
containsAllin classAbstractIntCollection
-
addAll
Description copied from class:AbstractIntBigList- Specified by:
addAllin interfaceCollection<Integer>- Overrides:
addAllin classAbstractIntBigList
-
removeAll
Description copied from class:AbstractIntCollection- Specified by:
removeAllin interfaceCollection<Integer>- Overrides:
removeAllin classAbstractIntCollection
-
retainAll
Description copied from class:AbstractIntCollection- Specified by:
retainAllin interfaceCollection<Integer>- Overrides:
retainAllin classAbstractIntCollection
-
clear
public void clear()Description copied from class:AbstractIntBigList- Specified by:
clearin interfaceCollection<Integer>- Overrides:
clearin classAbstractIntBigList
-
hashCode
public int hashCode()Description copied from class:AbstractIntBigListReturns the hash code for this big list, which is identical toList.hashCode().- Specified by:
hashCodein interfaceCollection<Integer>- Overrides:
hashCodein classAbstractIntBigList- Returns:
- the hash code for this big list.
-