You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This might be done as part of #844. It might be named maybe_collect_vec and could be called on Iterator<Item = Option<T>> and on Iterator<Item = Result<T, E>> (and not just the second).
maybe_-prefixed to avoid any conflict with the stdlib which should own try_-prefixed methods.
Our try_collect is in conflict with nightly Rust.
Same as
try_collect()
except that I don't have to specify Vec<_> as a type parameterThe text was updated successfully, but these errors were encountered: