Package it.unimi.dsi.fastutil.bytes
Class ByteBigLists.ListBigList
java.lang.Object
java.util.AbstractCollection<Byte>
it.unimi.dsi.fastutil.bytes.AbstractByteCollection
it.unimi.dsi.fastutil.bytes.AbstractByteBigList
it.unimi.dsi.fastutil.bytes.ByteBigLists.ListBigList
- All Implemented Interfaces:
BigList<Byte>
,ByteBigList
,ByteCollection
,ByteIterable
,ByteStack
,Size64
,Stack<Byte>
,Serializable
,Comparable<BigList<? extends Byte>>
,Iterable<Byte>
,Collection<Byte>
- Enclosing class:
ByteBigLists
A class exposing a list as a big list.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class it.unimi.dsi.fastutil.bytes.AbstractByteBigList
AbstractByteBigList.ByteRandomAccessSubList, AbstractByteBigList.ByteSubList
-
Method Summary
Modifier and TypeMethodDescriptionboolean
add
(byte key) Ensures that this collection contains the specified element (optional operation).void
add
(long index, byte key) Inserts the specified element at the specified position in this type-specific big list (optional operation).boolean
addAll
(long index, ByteBigList 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, ByteCollection 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 Byte> c) Adds all of the elements in the specified collection to this list (optional operation).boolean
Appends all of the elements in the specified type-specific big list to the end of this type-specific big list (optional operation).boolean
Adds all elements of the given type-specific collection to this collection.boolean
addAll
(Collection<? extends Byte> c) void
clear()
boolean
contains
(byte key) Returns true if this list contains the specified element.boolean
Checks whether this collection contains all elements from the given type-specific collection.boolean
containsAll
(Collection<?> c) byte
getByte
(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
(byte 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.iterator()
Returns a type-specific iterator on the elements of this collection.long
lastIndexOf
(byte 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.boolean
Remove from this collection all elements in the given type-specific collection.boolean
removeAll
(Collection<?> c) byte
removeByte
(long index) Removes the element at the specified position.void
removeElements
(long from, long to) Removes (hopefully quickly) elements of this type-specific big list.boolean
Retains in this collection only elements from the given type-specific collection.boolean
retainAll
(Collection<?> c) byte
set
(long index, byte 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.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) byte[]
Returns a primitive type array containing the items of this collection.byte[]
toByteArray
(byte[] a) Deprecated.Methods inherited from class it.unimi.dsi.fastutil.bytes.AbstractByteBigList
add, addElements, addElements, compareTo, equals, forEach, get, getElements, indexOf, intSpliterator, lastIndexOf, peek, peekByte, pop, popByte, push, push, rem, remove, set, setElements, size, top, topByte, toString
Methods inherited from class it.unimi.dsi.fastutil.bytes.AbstractByteCollection
add, contains, remove, toArray
Methods inherited from class java.util.AbstractCollection
toArray
Methods inherited from interface it.unimi.dsi.fastutil.bytes.ByteBigList
addAll, addAll, getElements, setElements, setElements, spliterator
Methods inherited from interface it.unimi.dsi.fastutil.bytes.ByteCollection
add, contains, intIterator, intParallelStream, intStream, parallelStream, remove, removeIf, removeIf, removeIf, stream, toArray
Methods inherited from interface it.unimi.dsi.fastutil.bytes.ByteIterable
forEach, forEach
Methods inherited from interface java.util.Collection
toArray, toArray
-
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
.- Specified by:
size
in interfaceBigList<Byte>
- Overrides:
size
in classAbstractByteBigList
- Parameters:
size
- the new size.
-
iterator
Description copied from class:AbstractByteBigList
Returns a type-specific iterator on the elements of this collection.- Specified by:
iterator
in interfaceByteBigList
- Specified by:
iterator
in interfaceByteCollection
- Specified by:
iterator
in interfaceByteIterable
- Specified by:
iterator
in interfaceCollection<Byte>
- Specified by:
iterator
in interfaceIterable<Byte>
- Overrides:
iterator
in classAbstractByteBigList
- Returns:
- a type-specific iterator on the elements of this collection.
- See Also:
-
listIterator
Description copied from class:AbstractByteBigList
Returns a type-specific big-list iterator on this type-specific big list.- Specified by:
listIterator
in interfaceBigList<Byte>
- Specified by:
listIterator
in interfaceByteBigList
- Overrides:
listIterator
in classAbstractByteBigList
- Returns:
- a big-list iterator over the elements in this big list.
- See Also:
-
listIterator
Description copied from class:AbstractByteBigList
Returns a type-specific list iterator on this type-specific big list starting at a given index.- Specified by:
listIterator
in interfaceBigList<Byte>
- Specified by:
listIterator
in interfaceByteBigList
- Overrides:
listIterator
in classAbstractByteBigList
- 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:AbstractByteBigList
Adds all of the elements in the specified collection to this list (optional operation).- Specified by:
addAll
in interfaceBigList<Byte>
- Overrides:
addAll
in classAbstractByteBigList
- 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:ByteBigList
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<Byte>
- Specified by:
subList
in interfaceByteBigList
- Overrides:
subList
in classAbstractByteBigList
- 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(byte key) Description copied from class:AbstractByteBigList
Returns true if this list contains the specified element.- Specified by:
contains
in interfaceByteCollection
- Overrides:
contains
in classAbstractByteBigList
- See Also:
-
toByteArray
public byte[] toByteArray()Description copied from interface:ByteCollection
Returns a primitive type array containing the items of this collection.- Specified by:
toByteArray
in interfaceByteCollection
- Overrides:
toByteArray
in classAbstractByteCollection
- 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:AbstractByteBigList
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 interfaceByteBigList
- Overrides:
removeElements
in classAbstractByteBigList
- Parameters:
from
- the start index (inclusive).to
- the end index (exclusive).
-
toByteArray
Deprecated.Description copied from class:AbstractByteCollection
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:
toByteArray
in interfaceByteCollection
- Overrides:
toByteArray
in classAbstractByteCollection
- 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:AbstractByteBigList
Inserts all of the elements in the specified type-specific collection into this type-specific big list at the specified position (optional operation).- Specified by:
addAll
in interfaceByteBigList
- Overrides:
addAll
in classAbstractByteBigList
- See Also:
-
addAll
Description copied from class:AbstractByteBigList
Adds all elements of the given type-specific collection to this collection.- Specified by:
addAll
in interfaceByteCollection
- Overrides:
addAll
in classAbstractByteBigList
- Parameters:
c
- a type-specific collection.- Returns:
true
if this collection changed as a result of the call.- See Also:
-
addAll
Description copied from interface:ByteBigList
Inserts 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:
addAll
in interfaceByteBigList
- See Also:
-
addAll
Description copied from interface:ByteBigList
Appends all of the elements in the specified type-specific big list to the end of this type-specific big list (optional operation).- Specified by:
addAll
in interfaceByteBigList
- See Also:
-
containsAll
Description copied from interface:ByteCollection
Checks whether this collection contains all elements from the given type-specific collection.- Specified by:
containsAll
in interfaceByteCollection
- Overrides:
containsAll
in classAbstractByteCollection
- Parameters:
c
- a type-specific collection.- Returns:
true
if this collection contains all elements of the argument.- See Also:
-
removeAll
Description copied from interface:ByteCollection
Remove from this collection all elements in the given type-specific collection.- Specified by:
removeAll
in interfaceByteCollection
- Overrides:
removeAll
in classAbstractByteCollection
- Parameters:
c
- a type-specific collection.- Returns:
true
if this collection changed as a result of the call.- See Also:
-
retainAll
Description copied from interface:ByteCollection
Retains in this collection only elements from the given type-specific collection.- Specified by:
retainAll
in interfaceByteCollection
- Overrides:
retainAll
in classAbstractByteCollection
- Parameters:
c
- a type-specific collection.- Returns:
true
if this collection changed as a result of the call.- See Also:
-
add
public void add(long index, byte key) Description copied from class:AbstractByteBigList
Inserts the specified element at the specified position in this type-specific big list (optional operation).- Specified by:
add
in interfaceByteBigList
- Overrides:
add
in classAbstractByteBigList
- See Also:
-
add
public boolean add(byte key) Description copied from class:AbstractByteBigList
Ensures that this collection contains the specified element (optional operation).- Specified by:
add
in interfaceByteCollection
- Overrides:
add
in classAbstractByteBigList
- See Also:
-
getByte
public byte getByte(long index) Description copied from interface:ByteBigList
Returns the element at the specified position.- Specified by:
getByte
in interfaceByteBigList
- See Also:
-
indexOf
public long indexOf(byte k) Description copied from interface:ByteBigList
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 interfaceByteBigList
- Overrides:
indexOf
in classAbstractByteBigList
- See Also:
-
lastIndexOf
public long lastIndexOf(byte k) Description copied from interface:ByteBigList
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 interfaceByteBigList
- Overrides:
lastIndexOf
in classAbstractByteBigList
- See Also:
-
removeByte
public byte removeByte(long index) Description copied from class:AbstractByteBigList
Removes the element at the specified position.- Specified by:
removeByte
in interfaceByteBigList
- Overrides:
removeByte
in classAbstractByteBigList
- See Also:
-
set
public byte set(long index, byte k) Description copied from class:AbstractByteBigList
Replaces the element at the specified position in this big list with the specified element (optional operation).- Specified by:
set
in interfaceByteBigList
- Overrides:
set
in classAbstractByteBigList
- See Also:
-
isEmpty
public boolean isEmpty()Description copied from interface:Stack
Checks whether the stack is empty.- Specified by:
isEmpty
in interfaceCollection<Byte>
- Specified by:
isEmpty
in interfaceStack<Byte>
- Overrides:
isEmpty
in classAbstractCollection<Byte>
- Returns:
- true if the stack is empty.
-
toArray
public <T> T[] toArray(T[] a) - Specified by:
toArray
in interfaceCollection<Byte>
- Overrides:
toArray
in classAbstractCollection<Byte>
-
containsAll
Description copied from class:AbstractByteCollection
- Specified by:
containsAll
in interfaceCollection<Byte>
- Overrides:
containsAll
in classAbstractByteCollection
-
addAll
Description copied from class:AbstractByteBigList
- Specified by:
addAll
in interfaceCollection<Byte>
- Overrides:
addAll
in classAbstractByteBigList
-
removeAll
Description copied from class:AbstractByteCollection
- Specified by:
removeAll
in interfaceCollection<Byte>
- Overrides:
removeAll
in classAbstractByteCollection
-
retainAll
Description copied from class:AbstractByteCollection
- Specified by:
retainAll
in interfaceCollection<Byte>
- Overrides:
retainAll
in classAbstractByteCollection
-
clear
public void clear()Description copied from class:AbstractByteBigList
- Specified by:
clear
in interfaceCollection<Byte>
- Overrides:
clear
in classAbstractByteBigList
-
hashCode
public int hashCode()Description copied from class:AbstractByteBigList
Returns the hash code for this big list, which is identical toList.hashCode()
.- Specified by:
hashCode
in interfaceCollection<Byte>
- Overrides:
hashCode
in classAbstractByteBigList
- Returns:
- the hash code for this big list.
-