Package | Description |
---|---|
com.uwyn.jhighlight.fastutil.chars |
Modifier and Type | Interface and Description |
---|---|
interface |
CharList
A type-specific
List ; provides some additional methods that use polymorphism to avoid (un)boxing. |
interface |
CharSet
A type-specific
Set ; provides some additional methods that use polymorphism to avoid (un)boxing. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractCharCollection
An abstract class providing basic methods for collections implementing a type-specific interface.
|
class |
AbstractCharList
An abstract class providing basic methods for lists implementing a type-specific list interface.
|
static class |
AbstractCharList.CharSubList |
class |
AbstractCharSet
An abstract class providing basic methods for sets implementing a type-specific interface.
|
class |
CharArrayList
A type-specific array-based list; provides some additional methods that use polymorphism to avoid (un)boxing.
|
Modifier and Type | Method and Description |
---|---|
boolean |
AbstractCharList.addAll(CharCollection c) |
boolean |
AbstractCharCollection.addAll(CharCollection c)
Adds all elements of the given type-specific collection to this collection.
|
boolean |
CharCollection.addAll(CharCollection c) |
boolean |
AbstractCharList.addAll(int index,
CharCollection c)
Delegates to a more generic method.
|
boolean |
AbstractCharList.CharSubList.addAll(int index,
CharCollection c) |
boolean |
CharArrayList.addAll(int index,
CharCollection c) |
boolean |
CharList.addAll(int index,
CharCollection c) |
boolean |
AbstractCharCollection.containsAll(CharCollection c)
Checks whether this collection contains all elements from the given type-specific collection.
|
boolean |
CharCollection.containsAll(CharCollection c) |
static int |
CharIterators.pour(CharIterator i,
CharCollection s)
Pours an iterator into a type-specific collection.
|
static int |
CharIterators.pour(CharIterator i,
CharCollection s,
int max)
Pours an iterator into a type-specific collection, with a limit on the number of elements.
|
boolean |
AbstractCharCollection.removeAll(CharCollection c)
Remove from this collection all elements in the given type-specific collection.
|
boolean |
CharCollection.removeAll(CharCollection c) |
boolean |
AbstractCharCollection.retainAll(CharCollection c)
Retains in this collection only elements from the given type-specific collection.
|
boolean |
CharCollection.retainAll(CharCollection c) |
static long |
CharIterators.unwrap(CharIterator i,
CharCollection c)
Unwraps an iterator into a type-specific collection.
|
static int |
CharIterators.unwrap(CharIterator i,
CharCollection c,
int max)
Unwraps an iterator into a type-specific collection, with a limit on the number of elements.
|
Constructor and Description |
---|
CharArrayList(CharCollection c)
Creates a new array list and fills it with a given type-specific collection.
|
Copyright © 2011–2020. All rights reserved.