Converts the given collection into a FailableStream. The FailableStream consists of the collections elements. Shortcut for Functions.stream(collection.stream()); @param collection The collection, which is being converted into a FailableStream. @param The col
(final Collection<O> collection)
| 557 | * @since 3.10 |
| 558 | */ |
| 559 | public static <O> FailableStream<O> stream(final Collection<O> collection) { |
| 560 | return new FailableStream<>(collection.stream()); |
| 561 | } |
| 562 | |
| 563 | /** |
| 564 | * Converts the given stream into a {@link FailableStream}. The {@link FailableStream} consists of the same |
no outgoing calls