Package it.unimi.dsi.fastutil.doubles
Class AbstractDoubleBigList.DoubleRandomAccessSubList
- java.lang.Object
-
- java.util.AbstractCollection<java.lang.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<java.lang.Double>
,DoubleBigList
,DoubleCollection
,DoubleIterable
,DoubleStack
,Size64
,Stack<java.lang.Double>
,java.io.Serializable
,java.lang.Comparable<BigList<? extends java.lang.Double>>
,java.lang.Iterable<java.lang.Double>
,java.util.Collection<java.lang.Double>
,java.util.RandomAccess
- Enclosing class:
- AbstractDoubleBigList
public static class AbstractDoubleBigList.DoubleRandomAccessSubList extends AbstractDoubleBigList.DoubleSubList implements java.util.RandomAccess
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class it.unimi.dsi.fastutil.doubles.AbstractDoubleBigList
AbstractDoubleBigList.DoubleRandomAccessSubList, AbstractDoubleBigList.DoubleSubList
-
-
Constructor Summary
Constructors Constructor Description DoubleRandomAccessSubList(DoubleBigList l, long from, long to)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DoubleBigList
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.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 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 Detail
-
DoubleRandomAccessSubList
public DoubleRandomAccessSubList(DoubleBigList l, long from, long to)
-
-
Method Detail
-
subList
public DoubleBigList subList(long from, long to)
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<java.lang.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:
BigList.subList(long,long)
-
-