Package it.unimi.dsi.fastutil.bytes
Class AbstractByteBigList.ByteRandomAccessSubList
java.lang.Object
java.util.AbstractCollection<Byte>
it.unimi.dsi.fastutil.bytes.AbstractByteCollection
it.unimi.dsi.fastutil.bytes.AbstractByteBigList
it.unimi.dsi.fastutil.bytes.AbstractByteBigList.ByteSubList
it.unimi.dsi.fastutil.bytes.AbstractByteBigList.ByteRandomAccessSubList
- All Implemented Interfaces:
BigList<Byte>
,ByteBigList
,ByteCollection
,ByteIterable
,ByteStack
,Size64
,Stack<Byte>
,Serializable
,Comparable<BigList<? extends Byte>>
,Iterable<Byte>
,Collection<Byte>
,RandomAccess
- Enclosing class:
AbstractByteBigList
public static class AbstractByteBigList.ByteRandomAccessSubList
extends AbstractByteBigList.ByteSubList
implements RandomAccess
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class it.unimi.dsi.fastutil.bytes.AbstractByteBigList
AbstractByteBigList.ByteRandomAccessSubList, AbstractByteBigList.ByteSubList
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionsubList
(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.Methods inherited from class it.unimi.dsi.fastutil.bytes.AbstractByteBigList.ByteSubList
add, add, addAll, addAll, addAll, addElements, getByte, getElements, intSpliterator, listIterator, rem, removeByte, removeElements, set, size64, spliterator
Methods inherited from class it.unimi.dsi.fastutil.bytes.AbstractByteBigList
add, addAll, addAll, addElements, clear, compareTo, contains, equals, forEach, get, hashCode, indexOf, indexOf, iterator, lastIndexOf, lastIndexOf, listIterator, peek, peekByte, pop, popByte, push, push, remove, set, setElements, size, size, top, topByte, toString
Methods inherited from class it.unimi.dsi.fastutil.bytes.AbstractByteCollection
add, contains, containsAll, containsAll, remove, removeAll, removeAll, retainAll, retainAll, toArray, toByteArray, toByteArray
Methods inherited from class java.util.AbstractCollection
isEmpty, toArray, toArray
Methods inherited from interface it.unimi.dsi.fastutil.bytes.ByteBigList
addAll, addAll, addAll, getElements, setElements, setElements
Methods inherited from interface it.unimi.dsi.fastutil.bytes.ByteCollection
add, contains, containsAll, intIterator, intParallelStream, intStream, parallelStream, remove, removeAll, removeIf, removeIf, removeIf, retainAll, stream, toArray, toByteArray, toByteArray
Methods inherited from interface it.unimi.dsi.fastutil.bytes.ByteIterable
forEach, forEach
Methods inherited from interface java.util.Collection
containsAll, isEmpty, removeAll, retainAll, toArray, toArray, toArray
-
Constructor Details
-
ByteRandomAccessSubList
-
-
Method Details
-
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.ByteSubList
- Parameters:
from
- the starting element (inclusive).to
- the ending element (exclusive).- Returns:
- a big sublist view of this big list.
- See Also:
-