Package it.unimi.dsi.fastutil.chars
Class AbstractCharBigList.CharRandomAccessSubList
java.lang.Object
java.util.AbstractCollection<java.lang.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<java.lang.Character>,CharBigList,CharCollection,CharIterable,CharStack,Size64,Stack<java.lang.Character>,java.io.Serializable,java.lang.Comparable<BigList<? extends java.lang.Character>>,java.lang.Iterable<java.lang.Character>,java.util.Collection<java.lang.Character>,java.util.RandomAccess
- Enclosing class:
- AbstractCharBigList
public static class AbstractCharBigList.CharRandomAccessSubList extends AbstractCharBigList.CharSubList implements java.util.RandomAccess
- See Also:
- Serialized Form
-
Nested Class Summary
Nested classes/interfaces inherited from class it.unimi.dsi.fastutil.chars.AbstractCharBigList
AbstractCharBigList.CharRandomAccessSubList, AbstractCharBigList.CharSubList -
Constructor Summary
Constructors Constructor Description CharRandomAccessSubList(CharBigList l, long from, long to) -
Method Summary
Modifier and Type Method Description CharBigListsubList(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 class java.lang.Object
getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface it.unimi.dsi.fastutil.chars.CharBigList
addAll, addAll, addAll, 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<java.lang.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:
BigList.subList(long,long)
-