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
Constructors -
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, spliteratorMethods 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, toStringMethods inherited from class it.unimi.dsi.fastutil.booleans.AbstractBooleanCollection
add, contains, containsAll, containsAll, remove, removeAll, removeAll, retainAll, retainAll, toArray, toBooleanArray, toBooleanArrayMethods inherited from class java.util.AbstractCollection
isEmpty, toArray, toArrayMethods inherited from interface it.unimi.dsi.fastutil.booleans.BooleanBigList
addAll, addAll, addAll, getElements, setElements, setElementsMethods inherited from interface it.unimi.dsi.fastutil.booleans.BooleanCollection
add, contains, containsAll, remove, removeAll, removeIf, removeIf, retainAll, toArray, toBooleanArray, toBooleanArrayMethods inherited from interface it.unimi.dsi.fastutil.booleans.BooleanIterable
forEachMethods 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:BooleanBigListReturns a type-specific view of the portion of this type-specific big list from the indexfrom, inclusive, to the indexto, exclusive.- Specified by:
subListin interfaceBigList<Boolean>- Specified by:
subListin interfaceBooleanBigList- Overrides:
subListin classAbstractBooleanBigList.BooleanSubList- Parameters:
from- the starting element (inclusive).to- the ending element (exclusive).- Returns:
- a big sublist view of this big list.
- See Also:
-