Package it.unimi.dsi.fastutil.doubles
Class AbstractDoubleList.DoubleRandomAccessSubList
- java.lang.Object
-
- java.util.AbstractCollection<java.lang.Double>
-
- it.unimi.dsi.fastutil.doubles.AbstractDoubleCollection
-
- it.unimi.dsi.fastutil.doubles.AbstractDoubleList
-
- it.unimi.dsi.fastutil.doubles.AbstractDoubleList.DoubleSubList
-
- it.unimi.dsi.fastutil.doubles.AbstractDoubleList.DoubleRandomAccessSubList
-
- All Implemented Interfaces:
DoubleCollection
,DoubleIterable
,DoubleList
,DoubleStack
,Stack<java.lang.Double>
,java.io.Serializable
,java.lang.Comparable<java.util.List<? extends java.lang.Double>>
,java.lang.Iterable<java.lang.Double>
,java.util.Collection<java.lang.Double>
,java.util.List<java.lang.Double>
,java.util.RandomAccess
- Enclosing class:
- AbstractDoubleList
public static class AbstractDoubleList.DoubleRandomAccessSubList extends AbstractDoubleList.DoubleSubList implements java.util.RandomAccess
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class it.unimi.dsi.fastutil.doubles.AbstractDoubleList
AbstractDoubleList.DoubleRandomAccessSubList, AbstractDoubleList.DoubleSubList
-
-
Constructor Summary
Constructors Constructor Description DoubleRandomAccessSubList(DoubleList l, int from, int to)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DoubleList
subList(int from, int to)
Returns a type-specific view of the portion of this list from the indexfrom
, inclusive, to the indexto
, exclusive.-
Methods inherited from class it.unimi.dsi.fastutil.doubles.AbstractDoubleList.DoubleSubList
add, add, addAll, addAll, addAll, addElements, getDouble, getElements, listIterator, rem, removeDouble, removeElements, set, setElements, size, spliterator
-
Methods inherited from class it.unimi.dsi.fastutil.doubles.AbstractDoubleList
addAll, addAll, addElements, clear, compareTo, contains, equals, forEach, hashCode, indexOf, iterator, lastIndexOf, listIterator, peekDouble, popDouble, push, replaceAll, size, toArray, toDoubleArray, topDouble, toString
-
Methods inherited from class it.unimi.dsi.fastutil.doubles.AbstractDoubleCollection
add, contains, containsAll, containsAll, forEach, remove, removeAll, removeAll, removeIf, retainAll, retainAll, toDoubleArray
-
Methods inherited from interface it.unimi.dsi.fastutil.doubles.DoubleCollection
containsAll, doubleIterator, doubleParallelStream, doubleSpliterator, doubleStream, parallelStream, removeAll, removeIf, removeIf, removeIf, retainAll, stream, toDoubleArray
-
Methods inherited from interface it.unimi.dsi.fastutil.doubles.DoubleIterable
forEach, forEach
-
Methods inherited from interface it.unimi.dsi.fastutil.doubles.DoubleList
add, add, addAll, contains, get, indexOf, lastIndexOf, remove, remove, replaceAll, replaceAll, set, setElements, setElements, sort, sort, unstableSort, unstableSort
-
Methods inherited from interface it.unimi.dsi.fastutil.doubles.DoubleStack
peek, pop, push, top
-
-
-
-
Constructor Detail
-
DoubleRandomAccessSubList
public DoubleRandomAccessSubList(DoubleList l, int from, int to)
-
-
Method Detail
-
subList
public DoubleList subList(int from, int to)
Description copied from interface:DoubleList
Returns a type-specific view of the portion of this list from the indexfrom
, inclusive, to the indexto
, exclusive.- Specified by:
subList
in interfaceDoubleList
- Specified by:
subList
in interfacejava.util.List<java.lang.Double>
- Overrides:
subList
in classAbstractDoubleList.DoubleSubList
- See Also:
List.subList(int,int)
-
-