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
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CharBigList
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.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 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
-
-
-
-
Constructor Detail
-
CharRandomAccessSubList
public CharRandomAccessSubList(CharBigList l, long from, long to)
-
-
Method Detail
-
subList
public CharBigList subList(long from, long to)
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<java.lang.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:
BigList.subList(long,long)
-
-