Package it.unimi.dsi.fastutil.chars
Class AbstractCharBigList.CharRandomAccessSubList
java.lang.Object
java.util.AbstractCollection<Character>
it.unimi.dsi.fastutil.chars.AbstractCharCollection
it.unimi.dsi.fastutil.chars.AbstractCharBigList
it.unimi.dsi.fastutil.chars.AbstractCharBigList.CharSubList
it.unimi.dsi.fastutil.chars.AbstractCharBigList.CharRandomAccessSubList
- All Implemented Interfaces:
BigList<Character>
,CharBigList
,CharCollection
,CharIterable
,CharStack
,Size64
,Stack<Character>
,Serializable
,Comparable<BigList<? extends Character>>
,Iterable<Character>
,Collection<Character>
,RandomAccess
- Enclosing class:
AbstractCharBigList
public static class AbstractCharBigList.CharRandomAccessSubList
extends AbstractCharBigList.CharSubList
implements RandomAccess
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class it.unimi.dsi.fastutil.chars.AbstractCharBigList
AbstractCharBigList.CharRandomAccessSubList, AbstractCharBigList.CharSubList
-
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.chars.AbstractCharBigList.CharSubList
add, add, addAll, addAll, addAll, addElements, getChar, getElements, intSpliterator, listIterator, rem, removeChar, removeElements, set, size64, spliterator
Methods inherited from class it.unimi.dsi.fastutil.chars.AbstractCharBigList
add, addAll, addAll, addElements, clear, compareTo, contains, equals, forEach, get, hashCode, indexOf, indexOf, iterator, lastIndexOf, lastIndexOf, listIterator, peek, peekChar, pop, popChar, push, push, remove, set, setElements, size, size, top, topChar, toString
Methods inherited from class it.unimi.dsi.fastutil.chars.AbstractCharCollection
add, contains, containsAll, containsAll, remove, removeAll, removeAll, retainAll, retainAll, toArray, toCharArray, toCharArray
Methods inherited from class java.util.AbstractCollection
isEmpty, toArray, toArray
Methods inherited from interface it.unimi.dsi.fastutil.chars.CharBigList
addAll, addAll, addAll, getElements, setElements, setElements
Methods inherited from interface it.unimi.dsi.fastutil.chars.CharCollection
add, contains, containsAll, intIterator, intParallelStream, intStream, parallelStream, remove, removeAll, removeIf, removeIf, removeIf, retainAll, stream, toArray, toCharArray, toCharArray
Methods inherited from interface it.unimi.dsi.fastutil.chars.CharIterable
forEach, forEach
Methods inherited from interface java.util.Collection
containsAll, isEmpty, removeAll, retainAll, toArray, toArray, toArray
-
Constructor Details
-
CharRandomAccessSubList
-
-
Method Details
-
subList
Description copied from interface:CharBigList
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<Character>
- Specified by:
subList
in interfaceCharBigList
- Overrides:
subList
in classAbstractCharBigList.CharSubList
- Parameters:
from
- the starting element (inclusive).to
- the ending element (exclusive).- Returns:
- a big sublist view of this big list.
- See Also:
-