Lines Matching refs:Function
20 import com.google.common.base.Function;
242 * Returns a collection that applies {@code function} to each element of
257 Function<? super F, T> function) {
258 return new TransformedCollection<F, T>(fromCollection, function);
263 final Function<? super F, ? extends T> function;
266 Function<? super F, ? extends T> function) {
268 this.function = checkNotNull(function);
280 return Iterators.transform(fromCollection.iterator(), function);