Package | Description |
---|---|
javolution.util |
High-performance collection classes with
guaranteed worst case execution time . |
javolution.util.service |
Service interfaces to be implemented by
javolution.util.*
collections and collections views. |
Modifier and Type | Method and Description |
---|---|
boolean |
FastCollection.doWhile(Predicate<? super E> doContinue)
Iterates over this collection elements applying the specified predicate
until that predicate returns
false (if the collection is
parallel all concurrent iterations will terminate then). |
FastCollection<E> |
FastCollection.filtered(Predicate<? super E> filter)
Returns a view exposing only the elements matching the specified
filter.
|
FastSet<E> |
FastSet.filtered(Predicate<? super E> filter) |
boolean |
FastCollection.removeIf(Predicate<? super E> filter)
Removes from this collection all the elements matching the specified
functional predicate.
|
Modifier and Type | Method and Description |
---|---|
boolean |
CollectionService.removeIf(Predicate<? super E> filter,
CollectionService.IterationController controller)
Removes from this collection the elements matching the specified
predicate.
|
Copyright © 2005-2013 Javolution. All Rights Reserved.