Package it.unimi.dsi.fastutil.floats
Class AbstractFloatBigList.FloatRandomAccessSubList
java.lang.Object
java.util.AbstractCollection<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<Float>
,FloatBigList
,FloatCollection
,FloatIterable
,FloatStack
,Size64
,Stack<Float>
,Serializable
,Comparable<BigList<? extends Float>>
,Iterable<Float>
,Collection<Float>
,RandomAccess
- Enclosing class:
AbstractFloatBigList
public static class AbstractFloatBigList.FloatRandomAccessSubList
extends AbstractFloatBigList.FloatSubList
implements RandomAccess
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class it.unimi.dsi.fastutil.floats.AbstractFloatBigList
AbstractFloatBigList.FloatRandomAccessSubList, AbstractFloatBigList.FloatSubList
-
Constructor Summary
-
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.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 class java.util.AbstractCollection
isEmpty, toArray, toArray
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, getElements, 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 Details
-
FloatRandomAccessSubList
-
-
Method Details
-
subList
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<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:
-