Converts the given Collection into a FailableStream. This is basically a simplified, reduced version of the Stream class, with the same underlying element stream, except that failable objects, like FailablePredicate, FailableFunction, or {@link FailableConsume
(final Collection<O> stream)
| 504 | * converting the stream. |
| 505 | */ |
| 506 | public static <O> FailableStream<O> stream(final Collection<O> stream) { |
| 507 | return stream(stream.stream()); |
| 508 | } |
| 509 | |
| 510 | /** |
| 511 | * Converts the given {@link Stream stream} into a {@link FailableStream}. |
no outgoing calls