Package it.unimi.dsi.fastutil.booleans
Class AbstractBooleanBigList.BooleanRandomAccessSubList
java.lang.Object
java.util.AbstractCollection<Boolean>
it.unimi.dsi.fastutil.booleans.AbstractBooleanCollection
it.unimi.dsi.fastutil.booleans.AbstractBooleanBigList
it.unimi.dsi.fastutil.booleans.AbstractBooleanBigList.BooleanSubList
it.unimi.dsi.fastutil.booleans.AbstractBooleanBigList.BooleanRandomAccessSubList
- All Implemented Interfaces:
BigList<Boolean>
,BooleanBigList
,BooleanCollection
,BooleanIterable
,BooleanStack
,Size64
,Stack<Boolean>
,Serializable
,Comparable<BigList<? extends Boolean>>
,Iterable<Boolean>
,Collection<Boolean>
,RandomAccess
- Enclosing class:
AbstractBooleanBigList
public static class AbstractBooleanBigList.BooleanRandomAccessSubList
extends AbstractBooleanBigList.BooleanSubList
implements RandomAccess
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class it.unimi.dsi.fastutil.booleans.AbstractBooleanBigList
AbstractBooleanBigList.BooleanRandomAccessSubList, AbstractBooleanBigList.BooleanSubList
-
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.booleans.AbstractBooleanBigList.BooleanSubList
add, add, addAll, addAll, addAll, addElements, getBoolean, getElements, listIterator, rem, removeBoolean, removeElements, set, size64, spliterator
Methods inherited from class it.unimi.dsi.fastutil.booleans.AbstractBooleanBigList
add, addAll, addAll, addElements, clear, compareTo, contains, equals, forEach, get, hashCode, indexOf, indexOf, iterator, lastIndexOf, lastIndexOf, listIterator, peek, peekBoolean, pop, popBoolean, push, push, remove, set, setElements, size, size, top, topBoolean, toString
Methods inherited from class it.unimi.dsi.fastutil.booleans.AbstractBooleanCollection
add, contains, containsAll, containsAll, remove, removeAll, removeAll, retainAll, retainAll, toArray, toBooleanArray, toBooleanArray
Methods inherited from class java.util.AbstractCollection
isEmpty, toArray, toArray
Methods inherited from interface it.unimi.dsi.fastutil.booleans.BooleanBigList
addAll, addAll, addAll, getElements, setElements, setElements
Methods inherited from interface it.unimi.dsi.fastutil.booleans.BooleanCollection
add, contains, containsAll, remove, removeAll, removeIf, removeIf, retainAll, toArray, toBooleanArray, toBooleanArray
Methods inherited from interface it.unimi.dsi.fastutil.booleans.BooleanIterable
forEach
Methods inherited from interface java.util.Collection
containsAll, isEmpty, parallelStream, removeAll, retainAll, stream, toArray, toArray, toArray
-
Constructor Details
-
BooleanRandomAccessSubList
-
-
Method Details
-
subList
Description copied from interface:BooleanBigList
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<Boolean>
- Specified by:
subList
in interfaceBooleanBigList
- Overrides:
subList
in classAbstractBooleanBigList.BooleanSubList
- Parameters:
from
- the starting element (inclusive).to
- the ending element (exclusive).- Returns:
- a big sublist view of this big list.
- See Also:
-