Home | History | Annotate | Download | only in base

Lines Matching refs:Function

205    * @param target the collection that may contain the function input
212 * Returns the composition of a function and a predicate. For every {@code x},
213 * the generated predicate returns {@code predicate(function(x))}.
215 * @return the composition of the provided function and predicate
218 Predicate<B> predicate, Function<A, ? extends B> function) {
219 return new CompositionPredicate<A, B>(predicate, function);
466 /** @see Predicates#compose(Predicate, Function) */
470 final Function<A, ? extends B> f;
472 private CompositionPredicate(Predicate<B> p, Function<A, ? extends B> f) {