Returns a fluent iterable that applies function to each element of this fluent iterable. The returned fluent iterable's iterator supports remove() if this iterable's iterator does. After a successful remove() call, this fluent iterable no longer contains the corresponding
(Function<? super E, T> function)
| 484 | |
| 485 | |
| 486 | public final <T> FluentIterable<T> transform(Function<? super E, T> function) { |
| 487 | return from(Iterables.transform(iterable, function)); |
| 488 | } |
| 489 | |
| 490 | /** |
| 491 | * Applies {@code function} to each element of this fluent iterable and returns a fluent iterable |
no test coverage detected