Package it.unimi.dsi.fastutil.ints
Class AbstractIntBigList.IntRandomAccessSubList
java.lang.Object
java.util.AbstractCollection<Integer>
it.unimi.dsi.fastutil.ints.AbstractIntCollection
it.unimi.dsi.fastutil.ints.AbstractIntBigList
it.unimi.dsi.fastutil.ints.AbstractIntBigList.IntSubList
it.unimi.dsi.fastutil.ints.AbstractIntBigList.IntRandomAccessSubList
- All Implemented Interfaces:
BigList<Integer>
,IntBigList
,IntCollection
,IntIterable
,IntStack
,Size64
,Stack<Integer>
,Serializable
,Comparable<BigList<? extends Integer>>
,Iterable<Integer>
,Collection<Integer>
,RandomAccess
- Enclosing class:
AbstractIntBigList
public static class AbstractIntBigList.IntRandomAccessSubList
extends AbstractIntBigList.IntSubList
implements RandomAccess
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class it.unimi.dsi.fastutil.ints.AbstractIntBigList
AbstractIntBigList.IntRandomAccessSubList, AbstractIntBigList.IntSubList
-
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.ints.AbstractIntBigList.IntSubList
add, add, addAll, addAll, addAll, addElements, getElements, getInt, listIterator, rem, removeElements, removeInt, set, size64, spliterator
Methods inherited from class it.unimi.dsi.fastutil.ints.AbstractIntBigList
add, addAll, addAll, addElements, clear, compareTo, contains, equals, forEach, get, hashCode, indexOf, indexOf, iterator, lastIndexOf, lastIndexOf, listIterator, peek, peekInt, pop, popInt, push, push, remove, set, setElements, size, size, top, topInt, toString
Methods inherited from class it.unimi.dsi.fastutil.ints.AbstractIntCollection
add, contains, containsAll, containsAll, forEach, remove, removeAll, removeAll, removeIf, retainAll, retainAll, toArray, toIntArray, toIntArray
Methods inherited from class java.util.AbstractCollection
isEmpty, toArray, toArray
Methods inherited from interface java.util.Collection
containsAll, isEmpty, removeAll, retainAll, toArray, toArray, toArray
Methods inherited from interface it.unimi.dsi.fastutil.ints.IntBigList
addAll, addAll, addAll, getElements, setElements, setElements
Methods inherited from interface it.unimi.dsi.fastutil.ints.IntCollection
add, contains, containsAll, intIterator, intParallelStream, intSpliterator, intStream, parallelStream, remove, removeAll, removeIf, removeIf, removeIf, retainAll, stream, toArray, toIntArray, toIntArray
Methods inherited from interface it.unimi.dsi.fastutil.ints.IntIterable
forEach, forEach
-
Constructor Details
-
IntRandomAccessSubList
-
-
Method Details
-
subList
Description copied from interface:IntBigList
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<Integer>
- Specified by:
subList
in interfaceIntBigList
- Overrides:
subList
in classAbstractIntBigList.IntSubList
- Parameters:
from
- the starting element (inclusive).to
- the ending element (exclusive).- Returns:
- a big sublist view of this big list.
- See Also:
-