Package | Description |
---|---|
org.codelibs.jhighlight.fastutil.chars |
Modifier and Type | Class and Description |
---|---|
class |
AbstractCharList
An abstract class providing basic methods for lists implementing a type-specific list interface.
|
static class |
AbstractCharList.CharSubList |
class |
CharArrayList
A type-specific array-based list; provides some additional methods that use polymorphism to avoid (un)boxing.
|
Modifier and Type | Field and Description |
---|---|
protected CharList |
AbstractCharList.CharSubList.l
The list this sublist restricts.
|
Modifier and Type | Method and Description |
---|---|
CharList |
AbstractCharList.charSubList(int from,
int to)
Deprecated.
|
CharList |
CharList.charSubList(int from,
int to)
Deprecated.
As of
fastutil 5, replaced by subList(int,int) . |
static CharList |
CharIterators.pour(CharIterator i)
Pours an iterator, returning a type-specific list.
|
static CharList |
CharIterators.pour(CharIterator i,
int max)
Pours an iterator, returning a type-specific list, with a limit on the number of elements.
|
CharList |
AbstractCharList.subList(int from,
int to) |
CharList |
AbstractCharList.CharSubList.subList(int from,
int to) |
CharList |
CharList.subList(int from,
int to)
Returns a type-specific view of the portion of this list from the index
from , inclusive, to the index to , exclusive. |
Modifier and Type | Method and Description |
---|---|
boolean |
AbstractCharList.addAll(CharList l) |
boolean |
CharList.addAll(CharList c) |
boolean |
CharArrayList.addAll(int index,
CharList l) |
boolean |
AbstractCharList.addAll(int index,
CharList l)
Delegates to a more generic method.
|
boolean |
AbstractCharList.CharSubList.addAll(int index,
CharList l) |
boolean |
CharList.addAll(int index,
CharList c) |
Constructor and Description |
---|
CharArrayList(CharList l)
Creates a new array list and fills it with a given type-specific list.
|
CharSubList(CharList l,
int from,
int to) |
Copyright © 2011–2024. All rights reserved.