Add TryStreamExt::try_{any,all}
to mirror StreamExt::{any,all}
#2771
Labels
TryStreamExt::try_{any,all}
to mirror StreamExt::{any,all}
#2771
There's no nice way to build this with the current combinators, without either buffering the whole stream (
try_collect()
) and relying onIterator::{any,all}
, or ignoring errors and usingStreamExt::{any,all}
The text was updated successfully, but these errors were encountered: