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
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.ints.AbstractIntBigList.IntSubList
add, add, addAll, addAll, addAll, addElements, getElements, getInt, listIterator, rem, removeElements, removeInt, set, size64, spliteratorMethods 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, toStringMethods inherited from class it.unimi.dsi.fastutil.ints.AbstractIntCollection
add, contains, containsAll, containsAll, forEach, remove, removeAll, removeAll, removeIf, retainAll, retainAll, toArray, toIntArray, toIntArrayMethods 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.ints.IntBigList
addAll, addAll, addAll, getElements, setElements, setElementsMethods 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, toIntArrayMethods inherited from interface it.unimi.dsi.fastutil.ints.IntIterable
forEach, forEach
-
Constructor Details
-
IntRandomAccessSubList
-
-
Method Details
-
subList
Description copied from interface:IntBigListReturns 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<Integer>- Specified by:
subListin interfaceIntBigList- Overrides:
subListin classAbstractIntBigList.IntSubList- Parameters:
from- the starting element (inclusive).to- the ending element (exclusive).- Returns:
- a big sublist view of this big list.
- See Also:
-