Lines Matching refs:Function
21 import com.google.common.base.Function;
411 * Iterator<? extends T>, then this Function would look simply like:
413 * Function<A, B> function = new Function<A, B> {
422 Function<Iterable<? extends T>, Iterator<? extends T>> function
423 = new Function<Iterable<? extends T>, Iterator<? extends T>>() {
429 = transform(inputs, function);
581 * Returns an iterable that applies {@code function} to each element of {@code
589 final Function<? super F, ? extends T> function) {
591 checkNotNull(function);
594 return Iterators.transform(fromIterable.iterator(), function);