Package it.unimi.dsi.fastutil.floats
Class AbstractFloatBigList.FloatRandomAccessSubList
- java.lang.Object
-
- java.util.AbstractCollection<java.lang.Float>
-
- it.unimi.dsi.fastutil.floats.AbstractFloatCollection
-
- it.unimi.dsi.fastutil.floats.AbstractFloatBigList
-
- it.unimi.dsi.fastutil.floats.AbstractFloatBigList.FloatSubList
-
- it.unimi.dsi.fastutil.floats.AbstractFloatBigList.FloatRandomAccessSubList
-
- All Implemented Interfaces:
BigList<java.lang.Float>
,FloatBigList
,FloatCollection
,FloatIterable
,FloatStack
,Size64
,Stack<java.lang.Float>
,java.io.Serializable
,java.lang.Comparable<BigList<? extends java.lang.Float>>
,java.lang.Iterable<java.lang.Float>
,java.util.Collection<java.lang.Float>
,java.util.RandomAccess
- Enclosing class:
- AbstractFloatBigList
public static class AbstractFloatBigList.FloatRandomAccessSubList extends AbstractFloatBigList.FloatSubList implements java.util.RandomAccess
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class it.unimi.dsi.fastutil.floats.AbstractFloatBigList
AbstractFloatBigList.FloatRandomAccessSubList, AbstractFloatBigList.FloatSubList
-
-
Constructor Summary
Constructors Constructor Description FloatRandomAccessSubList(FloatBigList l, long from, long to)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FloatBigList
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.floats.AbstractFloatBigList.FloatSubList
add, add, addAll, addAll, addAll, addElements, doubleSpliterator, getElements, getFloat, listIterator, rem, removeElements, removeFloat, set, size64, spliterator
-
Methods inherited from class it.unimi.dsi.fastutil.floats.AbstractFloatBigList
add, addAll, addAll, addElements, clear, compareTo, contains, equals, forEach, get, hashCode, indexOf, indexOf, iterator, lastIndexOf, lastIndexOf, listIterator, peek, peekFloat, pop, popFloat, push, push, remove, set, setElements, size, size, top, topFloat, toString
-
Methods inherited from class it.unimi.dsi.fastutil.floats.AbstractFloatCollection
add, contains, containsAll, containsAll, remove, removeAll, removeAll, retainAll, retainAll, toArray, toFloatArray, toFloatArray
-
Methods inherited from interface java.util.Collection
containsAll, isEmpty, removeAll, retainAll, toArray, toArray, toArray
-
Methods inherited from interface it.unimi.dsi.fastutil.floats.FloatBigList
addAll, addAll, addAll, setElements, setElements
-
Methods inherited from interface it.unimi.dsi.fastutil.floats.FloatCollection
add, contains, containsAll, doubleIterator, doubleParallelStream, doubleStream, parallelStream, remove, removeAll, removeIf, removeIf, removeIf, retainAll, stream, toArray, toFloatArray, toFloatArray
-
Methods inherited from interface it.unimi.dsi.fastutil.floats.FloatIterable
forEach, forEach
-
-
-
-
Constructor Detail
-
FloatRandomAccessSubList
public FloatRandomAccessSubList(FloatBigList l, long from, long to)
-
-
Method Detail
-
subList
public FloatBigList subList(long from, long to)
Description copied from interface:FloatBigList
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.Float>
- Specified by:
subList
in interfaceFloatBigList
- Overrides:
subList
in classAbstractFloatBigList.FloatSubList
- 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)
-
-