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
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LongBigList
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.-
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, spliterator
-
Methods 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, toString
-
Methods inherited from class it.unimi.dsi.fastutil.longs.AbstractLongCollection
add, contains, containsAll, containsAll, forEach, remove, removeAll, removeAll, removeIf, retainAll, retainAll, toArray, toLongArray, toLongArray
-
Methods inherited from interface java.util.Collection
containsAll, isEmpty, removeAll, retainAll, toArray, toArray, toArray
-
Methods inherited from interface it.unimi.dsi.fastutil.longs.LongBigList
addAll, addAll, addAll, getElements, setElements, setElements
-
Methods 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, toLongArray
-
Methods inherited from interface it.unimi.dsi.fastutil.longs.LongIterable
forEach, forEach
-
-
-
-
Constructor Detail
-
LongRandomAccessSubList
public LongRandomAccessSubList(LongBigList l, long from, long to)
-
-
Method Detail
-
subList
public LongBigList subList(long from, long to)
Description copied from interface:LongBigList
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<java.lang.Long>
- Specified by:
subList
in interfaceLongBigList
- Overrides:
subList
in 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)
-
-