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
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IntBigList
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.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 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 Detail
-
IntRandomAccessSubList
public IntRandomAccessSubList(IntBigList l, long from, long to)
-
-
Method Detail
-
subList
public IntBigList subList(long from, long to)
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<java.lang.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:
BigList.subList(long,long)
-
-