@Generated(date="2015-05-07T09:33:03+0200",
value="KTypeCollection.java")
public interface IntCollection
extends IntContainer
| Modifier and Type | Method and Description |
|---|---|
void |
clear()
Removes all elements from this collection.
|
void |
release()
Removes all elements from the collection and additionally releases any
internal buffers.
|
int |
removeAll(int e)
Removes all occurrences of
e from this collection. |
int |
removeAll(IntLookupContainer c)
Removes all elements in this collection that are present in
c. |
int |
removeAll(IntPredicate predicate)
Removes all elements in this collection for which the given predicate
returns
true. |
int |
retainAll(IntLookupContainer c)
Keeps all elements in this collection that are present in
c. |
int |
retainAll(IntPredicate predicate)
Keeps all elements in this collection for which the given predicate returns
true. |
int removeAll(int e)
e from this collection.e - Element to be removed from this collection, if present.int removeAll(IntLookupContainer c)
c.int removeAll(IntPredicate predicate)
true.int retainAll(IntLookupContainer c)
c.
Runs in time proportional to the number of elements in this collection.
Equivalent of sets intersection.int retainAll(IntPredicate predicate)
true.void clear()
release()Copyright © 2015 Carrot Search s.c.. All Rights Reserved.