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