Package it.unimi.dsi.fastutil.booleans
Class AbstractBooleanBigList.BooleanRandomAccessSubList
- java.lang.Object
-
- java.util.AbstractCollection<java.lang.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<java.lang.Boolean>
,BooleanBigList
,BooleanCollection
,BooleanIterable
,BooleanStack
,Size64
,Stack<java.lang.Boolean>
,java.io.Serializable
,java.lang.Comparable<BigList<? extends java.lang.Boolean>>
,java.lang.Iterable<java.lang.Boolean>
,java.util.Collection<java.lang.Boolean>
,java.util.RandomAccess
- Enclosing class:
- AbstractBooleanBigList
public static class AbstractBooleanBigList.BooleanRandomAccessSubList extends AbstractBooleanBigList.BooleanSubList implements java.util.RandomAccess
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class it.unimi.dsi.fastutil.booleans.AbstractBooleanBigList
AbstractBooleanBigList.BooleanRandomAccessSubList, AbstractBooleanBigList.BooleanSubList
-
-
Constructor Summary
Constructors Constructor Description BooleanRandomAccessSubList(BooleanBigList l, long from, long to)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BooleanBigList
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.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 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
-
-
-
-
Constructor Detail
-
BooleanRandomAccessSubList
public BooleanRandomAccessSubList(BooleanBigList l, long from, long to)
-
-
Method Detail
-
subList
public BooleanBigList subList(long from, long to)
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<java.lang.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:
BigList.subList(long,long)
-
-