Package it.unimi.dsi.fastutil.floats
Class AbstractFloatList.FloatRandomAccessSubList
- java.lang.Object
-
- java.util.AbstractCollection<java.lang.Float>
-
- it.unimi.dsi.fastutil.floats.AbstractFloatCollection
-
- it.unimi.dsi.fastutil.floats.AbstractFloatList
-
- it.unimi.dsi.fastutil.floats.AbstractFloatList.FloatSubList
-
- it.unimi.dsi.fastutil.floats.AbstractFloatList.FloatRandomAccessSubList
-
- All Implemented Interfaces:
FloatCollection
,FloatIterable
,FloatList
,FloatStack
,Stack<java.lang.Float>
,java.io.Serializable
,java.lang.Comparable<java.util.List<? extends java.lang.Float>>
,java.lang.Iterable<java.lang.Float>
,java.util.Collection<java.lang.Float>
,java.util.List<java.lang.Float>
,java.util.RandomAccess
- Enclosing class:
- AbstractFloatList
public static class AbstractFloatList.FloatRandomAccessSubList extends AbstractFloatList.FloatSubList implements java.util.RandomAccess
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class it.unimi.dsi.fastutil.floats.AbstractFloatList
AbstractFloatList.FloatRandomAccessSubList, AbstractFloatList.FloatSubList
-
-
Constructor Summary
Constructors Constructor Description FloatRandomAccessSubList(FloatList l, int from, int to)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FloatList
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.floats.AbstractFloatList.FloatSubList
add, add, addAll, addAll, addAll, addElements, getElements, getFloat, listIterator, rem, removeElements, removeFloat, set, setElements, size, spliterator
-
Methods inherited from class it.unimi.dsi.fastutil.floats.AbstractFloatList
addAll, addAll, addElements, clear, compareTo, contains, equals, forEach, hashCode, indexOf, iterator, lastIndexOf, listIterator, peekFloat, popFloat, push, size, toArray, toFloatArray, topFloat, toString
-
Methods inherited from class it.unimi.dsi.fastutil.floats.AbstractFloatCollection
add, contains, containsAll, containsAll, remove, removeAll, removeAll, retainAll, retainAll, toFloatArray
-
Methods inherited from interface it.unimi.dsi.fastutil.floats.FloatCollection
containsAll, doubleIterator, doubleParallelStream, doubleSpliterator, doubleStream, parallelStream, removeAll, removeIf, removeIf, removeIf, retainAll, stream, toFloatArray
-
Methods inherited from interface it.unimi.dsi.fastutil.floats.FloatIterable
forEach, forEach
-
Methods inherited from interface it.unimi.dsi.fastutil.floats.FloatList
add, add, addAll, contains, get, indexOf, lastIndexOf, remove, remove, replaceAll, replaceAll, replaceAll, set, setElements, setElements, sort, sort, unstableSort, unstableSort
-
Methods inherited from interface it.unimi.dsi.fastutil.floats.FloatStack
peek, pop, push, top
-
-
-
-
Constructor Detail
-
FloatRandomAccessSubList
public FloatRandomAccessSubList(FloatList l, int from, int to)
-
-
Method Detail
-
subList
public FloatList subList(int from, int to)
Description copied from interface:FloatList
Returns a type-specific view of the portion of this list from the indexfrom
, inclusive, to the indexto
, exclusive.- Specified by:
subList
in interfaceFloatList
- Specified by:
subList
in interfacejava.util.List<java.lang.Float>
- Overrides:
subList
in classAbstractFloatList.FloatSubList
- See Also:
List.subList(int,int)
-
-