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
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.chars.AbstractCharBigList.CharSubList
add, add, addAll, addAll, addAll, addElements, getChar, getElements, intSpliterator, listIterator, rem, removeChar, removeElements, set, size64, spliteratorMethods 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, toStringMethods inherited from class it.unimi.dsi.fastutil.chars.AbstractCharCollection
add, contains, containsAll, containsAll, remove, removeAll, removeAll, retainAll, retainAll, toArray, toCharArray, toCharArrayMethods inherited from class java.util.AbstractCollection
isEmpty, toArray, toArrayMethods inherited from interface it.unimi.dsi.fastutil.chars.CharBigList
addAll, addAll, addAll, getElements, setElements, setElementsMethods 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, toCharArrayMethods inherited from interface it.unimi.dsi.fastutil.chars.CharIterable
forEach, forEachMethods inherited from interface java.util.Collection
containsAll, isEmpty, removeAll, retainAll, toArray, toArray, toArray
-
Constructor Details
-
CharRandomAccessSubList
-
-
Method Details
-
subList
Description copied from interface:CharBigListReturns 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<Character>- Specified by:
subListin interfaceCharBigList- Overrides:
subListin classAbstractCharBigList.CharSubList- Parameters:
from- the starting element (inclusive).to- the ending element (exclusive).- Returns:
- a big sublist view of this big list.
- See Also:
-