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
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.doubles.AbstractDoubleBigList.DoubleSubList
add, add, addAll, addAll, addAll, addElements, getDouble, getElements, listIterator, rem, removeDouble, removeElements, set, size64, spliteratorMethods 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, toStringMethods inherited from class it.unimi.dsi.fastutil.doubles.AbstractDoubleCollection
add, contains, containsAll, containsAll, forEach, remove, removeAll, removeAll, removeIf, retainAll, retainAll, toArray, toDoubleArray, toDoubleArrayMethods 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.doubles.DoubleBigList
addAll, addAll, addAll, getElements, setElements, setElementsMethods 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, toDoubleArrayMethods inherited from interface it.unimi.dsi.fastutil.doubles.DoubleIterable
forEach, forEach
-
Constructor Details
-
DoubleRandomAccessSubList
-
-
Method Details
-
subList
Description copied from interface:DoubleBigListReturns 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<Double>- Specified by:
subListin interfaceDoubleBigList- Overrides:
subListin classAbstractDoubleBigList.DoubleSubList- Parameters:
from- the starting element (inclusive).to- the ending element (exclusive).- Returns:
- a big sublist view of this big list.
- See Also:
-