@Generated(date="2014-01-02T13:00:30+0000",
value="HPPC generated from: CharCollection.java")
public interface CharCollection
extends CharContainer
| Modifier and Type | Method and Description |
|---|---|
void |
clear()
Removes all elements from this collection.
|
int |
removeAll(CharLookupContainer c)
Removes all elements in this collection that are present
in
c. |
int |
removeAll(CharPredicate predicate)
Removes all elements in this collection for which the
given predicate returns
true. |
int |
removeAllOccurrences(char e)
Removes all occurrences of
e from this collection. |
int |
retainAll(CharLookupContainer c)
Keeps all elements in this collection that are present
in
c. |
int |
retainAll(CharPredicate predicate)
Keeps all elements in this collection for which the
given predicate returns
true. |
int removeAllOccurrences(char e)
e from this collection.e - Element to be removed from this collection, if present.int removeAll(CharLookupContainer c)
c. Runs in time proportional to the number
of elements in this collection. Equivalent of sets difference.int removeAll(CharPredicate predicate)
true.int retainAll(CharLookupContainer c)
c. Runs in time proportional to the number
of elements in this collection. Equivalent of sets intersection.int retainAll(CharPredicate predicate)
true.void clear()
Copyright © 2014 Carrot Search s.c.. All rights reserved.