MCPcopy Index your code
hub / github.com/antlr/codebuff / transform

Method transform

output/java_guava/1.4.17/FluentIterable.java:486–488  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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

Callers 1

transformAndConcatMethod · 0.95

Calls 2

fromMethod · 0.95
transformMethod · 0.95

Tested by

no test coverage detected