示例#1
0
 /** @see Iterate#transformIf(Iterable, Predicate, Function) */
 public static <T, V> MutableList<V> transformIf(
     Iterable<T> iterable,
     Predicate<? super T> predicate,
     Function<? super T, ? extends V> function) {
   return IterableIterate.tranformIf(iterable, predicate, function, FastList.<V>newList());
 }