Package it.unimi.dsi.fastutil.ints
Class AbstractIntBigList.IntRandomAccessSubList
java.lang.Object
java.util.AbstractCollection<java.lang.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<java.lang.Integer>,IntBigList,IntCollection,IntIterable,IntStack,Size64,Stack<java.lang.Integer>,java.io.Serializable,java.lang.Comparable<BigList<? extends java.lang.Integer>>,java.lang.Iterable<java.lang.Integer>,java.util.Collection<java.lang.Integer>,java.util.RandomAccess
- Enclosing class:
- AbstractIntBigList
public static class AbstractIntBigList.IntRandomAccessSubList extends AbstractIntBigList.IntSubList implements java.util.RandomAccess
- See Also:
- Serialized Form
-
Nested Class Summary
Nested classes/interfaces inherited from class it.unimi.dsi.fastutil.ints.AbstractIntBigList
AbstractIntBigList.IntRandomAccessSubList, AbstractIntBigList.IntSubList -
Constructor Summary
Constructors Constructor Description IntRandomAccessSubList(IntBigList l, long from, long to) -
Method Summary
Modifier and Type Method Description IntBigListsubList(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 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.ints.IntBigList
addAll, addAll, addAll, 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<java.lang.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:
BigList.subList(long,long)
-