@Generated(date="2016-03-16T08:23:14+0000", value="HPPC generated from: ByteCollection.java") public interface ByteCollection extends ByteContainer
Modifier and Type | Method and Description |
---|---|
void |
clear()
Removes all elements from this collection.
|
int |
removeAll(ByteLookupContainer c)
Removes all elements in this collection that are present
in
c . |
int |
removeAll(BytePredicate predicate)
Removes all elements in this collection for which the
given predicate returns
true . |
int |
removeAllOccurrences(byte e)
Removes all occurrences of
e from this collection. |
int |
retainAll(ByteLookupContainer c)
Keeps all elements in this collection that are present
in
c . |
int |
retainAll(BytePredicate predicate)
Keeps all elements in this collection for which the
given predicate returns
true . |
int removeAllOccurrences(byte e)
e
from this collection.e
- Element to be removed from this collection, if present.int removeAll(ByteLookupContainer c)
c
. Runs in time proportional to the number
of elements in this collection. Equivalent of sets difference.int removeAll(BytePredicate predicate)
true
.int retainAll(ByteLookupContainer c)
c
. Runs in time proportional to the number
of elements in this collection. Equivalent of sets intersection.int retainAll(BytePredicate predicate)
true
.void clear()
Copyright © 2016 Carrot Search s.c.. All rights reserved.