Class AbstractLongBigList.LongRandomAccessSubList
java.lang.Object
java.util.AbstractCollection<Long>
it.unimi.dsi.fastutil.longs.AbstractLongCollection
it.unimi.dsi.fastutil.longs.AbstractLongBigList
it.unimi.dsi.fastutil.longs.AbstractLongBigList.LongSubList
it.unimi.dsi.fastutil.longs.AbstractLongBigList.LongRandomAccessSubList
- All Implemented Interfaces:
BigList<Long>,LongBigList,LongCollection,LongIterable,LongStack,Size64,Stack<Long>,Serializable,Comparable<BigList<? extends Long>>,Iterable<Long>,Collection<Long>,RandomAccess
- Enclosing class:
AbstractLongBigList
public static class AbstractLongBigList.LongRandomAccessSubList
extends AbstractLongBigList.LongSubList
implements RandomAccess
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class it.unimi.dsi.fastutil.longs.AbstractLongBigList
AbstractLongBigList.LongRandomAccessSubList, AbstractLongBigList.LongSubList -
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.longs.AbstractLongBigList.LongSubList
add, add, addAll, addAll, addAll, addElements, getElements, getLong, listIterator, rem, removeElements, removeLong, set, size64, spliteratorMethods inherited from class it.unimi.dsi.fastutil.longs.AbstractLongBigList
add, addAll, addAll, addElements, clear, compareTo, contains, equals, forEach, get, hashCode, indexOf, indexOf, iterator, lastIndexOf, lastIndexOf, listIterator, peek, peekLong, pop, popLong, push, push, remove, set, setElements, size, size, top, topLong, toStringMethods inherited from class it.unimi.dsi.fastutil.longs.AbstractLongCollection
add, contains, containsAll, containsAll, forEach, remove, removeAll, removeAll, removeIf, retainAll, retainAll, toArray, toLongArray, toLongArrayMethods inherited from class java.util.AbstractCollection
isEmpty, toArray, toArrayMethods inherited from interface java.util.Collection
containsAll, isEmpty, removeAll, retainAll, toArray, toArray, toArrayMethods inherited from interface it.unimi.dsi.fastutil.longs.LongBigList
addAll, addAll, addAll, getElements, setElements, setElementsMethods inherited from interface it.unimi.dsi.fastutil.longs.LongCollection
add, contains, containsAll, longIterator, longParallelStream, longSpliterator, longStream, parallelStream, remove, removeAll, removeIf, removeIf, removeIf, retainAll, stream, toArray, toLongArray, toLongArrayMethods inherited from interface it.unimi.dsi.fastutil.longs.LongIterable
forEach, forEach
-
Constructor Details
-
LongRandomAccessSubList
-
-
Method Details
-
subList
Description copied from interface:LongBigListReturns 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<Long>- Specified by:
subListin interfaceLongBigList- Overrides:
subListin classAbstractLongBigList.LongSubList- Parameters:
from- the starting element (inclusive).to- the ending element (exclusive).- Returns:
- a big sublist view of this big list.
- See Also:
-