Package it.unimi.dsi.fastutil.longs
Class AbstractLongBigList.LongRandomAccessSubList
java.lang.Object
java.util.AbstractCollection<java.lang.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<java.lang.Long>,LongBigList,LongCollection,LongIterable,LongStack,Size64,Stack<java.lang.Long>,java.io.Serializable,java.lang.Comparable<BigList<? extends java.lang.Long>>,java.lang.Iterable<java.lang.Long>,java.util.Collection<java.lang.Long>,java.util.RandomAccess
- Enclosing class:
- AbstractLongBigList
public static class AbstractLongBigList.LongRandomAccessSubList extends AbstractLongBigList.LongSubList implements java.util.RandomAccess
- See Also:
- Serialized Form
-
Nested Class Summary
Nested classes/interfaces inherited from class it.unimi.dsi.fastutil.longs.AbstractLongBigList
AbstractLongBigList.LongRandomAccessSubList, AbstractLongBigList.LongSubList -
Constructor Summary
Constructors Constructor Description LongRandomAccessSubList(LongBigList l, long from, long to) -
Method Summary
Modifier and Type Method Description LongBigListsubList(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 class java.lang.Object
getClass, notify, notifyAll, wait, wait, waitMethods 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, 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<java.lang.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:
BigList.subList(long,long)
-