MCPcopy
hub / github.com/google/guava / stream

Method stream

guava/src/com/google/common/collect/FluentIterable.java:849–851  ·  view source on GitHub ↗

Returns a stream of this fluent iterable's contents (similar to calling {@link Collection#stream} on a collection). <p><b>Note:</b> the earlier in the chain you can switch to {@code Stream} usage (ideally not going through {@code FluentIterable} at all), the more performant and idiomatic your code

()

Source from the content-addressed store, hash-verified

847 * @since 21.0
848 */
849 public final Stream<E> stream() {
850 return Streams.stream(getDelegate());
851 }
852}

Callers

nothing calls this directly

Calls 2

streamMethod · 0.95
getDelegateMethod · 0.95

Tested by

no test coverage detected