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
Constructors -
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, spliteratorMethods 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, toStringMethods inherited from class it.unimi.dsi.fastutil.bytes.AbstractByteCollection
add, contains, containsAll, containsAll, remove, removeAll, removeAll, retainAll, retainAll, toArray, toByteArray, toByteArrayMethods inherited from class java.util.AbstractCollection
isEmpty, toArray, toArrayMethods inherited from interface it.unimi.dsi.fastutil.bytes.ByteBigList
addAll, addAll, addAll, getElements, setElements, setElementsMethods 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, toByteArrayMethods inherited from interface it.unimi.dsi.fastutil.bytes.ByteIterable
forEach, forEachMethods inherited from interface java.util.Collection
containsAll, isEmpty, removeAll, retainAll, toArray, toArray, toArray
-
Constructor Details
-
ByteRandomAccessSubList
-
-
Method Details
-
subList
Description copied from interface:ByteBigListReturns 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<Byte>- Specified by:
subListin interfaceByteBigList- Overrides:
subListin classAbstractByteBigList.ByteSubList- Parameters:
from- the starting element (inclusive).to- the ending element (exclusive).- Returns:
- a big sublist view of this big list.
- See Also:
-