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
()
| 847 | * @since 21.0 |
| 848 | */ |
| 849 | public final Stream<E> stream() { |
| 850 | return Streams.stream(getDelegate()); |
| 851 | } |
| 852 | } |
nothing calls this directly
no test coverage detected