Package it.unimi.dsi.fastutil.doubles
Class AbstractDoubleBigList.DoubleRandomAccessSubList
java.lang.Object
java.util.AbstractCollection<Double>
it.unimi.dsi.fastutil.doubles.AbstractDoubleCollection
it.unimi.dsi.fastutil.doubles.AbstractDoubleBigList
it.unimi.dsi.fastutil.doubles.AbstractDoubleBigList.DoubleSubList
it.unimi.dsi.fastutil.doubles.AbstractDoubleBigList.DoubleRandomAccessSubList
- All Implemented Interfaces:
BigList<Double>
,DoubleBigList
,DoubleCollection
,DoubleIterable
,DoubleStack
,Size64
,Stack<Double>
,Serializable
,Comparable<BigList<? extends Double>>
,Iterable<Double>
,Collection<Double>
,RandomAccess
- Enclosing class:
AbstractDoubleBigList
public static class AbstractDoubleBigList.DoubleRandomAccessSubList
extends AbstractDoubleBigList.DoubleSubList
implements RandomAccess
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class it.unimi.dsi.fastutil.doubles.AbstractDoubleBigList
AbstractDoubleBigList.DoubleRandomAccessSubList, AbstractDoubleBigList.DoubleSubList
-
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.doubles.AbstractDoubleBigList.DoubleSubList
add, add, addAll, addAll, addAll, addElements, getDouble, getElements, listIterator, rem, removeDouble, removeElements, set, size64, spliterator
Methods inherited from class it.unimi.dsi.fastutil.doubles.AbstractDoubleBigList
add, addAll, addAll, addElements, clear, compareTo, contains, equals, forEach, get, hashCode, indexOf, indexOf, iterator, lastIndexOf, lastIndexOf, listIterator, peek, peekDouble, pop, popDouble, push, push, remove, set, setElements, size, size, top, topDouble, toString
Methods inherited from class it.unimi.dsi.fastutil.doubles.AbstractDoubleCollection
add, contains, containsAll, containsAll, forEach, remove, removeAll, removeAll, removeIf, retainAll, retainAll, toArray, toDoubleArray, toDoubleArray
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.doubles.DoubleBigList
addAll, addAll, addAll, getElements, setElements, setElements
Methods inherited from interface it.unimi.dsi.fastutil.doubles.DoubleCollection
add, contains, containsAll, doubleIterator, doubleParallelStream, doubleSpliterator, doubleStream, parallelStream, remove, removeAll, removeIf, removeIf, removeIf, retainAll, stream, toArray, toDoubleArray, toDoubleArray
Methods inherited from interface it.unimi.dsi.fastutil.doubles.DoubleIterable
forEach, forEach
-
Constructor Details
-
DoubleRandomAccessSubList
-
-
Method Details
-
subList
Description copied from interface:DoubleBigList
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<Double>
- Specified by:
subList
in interfaceDoubleBigList
- Overrides:
subList
in classAbstractDoubleBigList.DoubleSubList
- Parameters:
from
- the starting element (inclusive).to
- the ending element (exclusive).- Returns:
- a big sublist view of this big list.
- See Also:
-