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
Similar to #522, which defines flatten_ok, there could also be a flat_map_ok which operates on an IntoIter<Item = Result<T, E>>, applies a function to T if the value is Ok and flattens the result of that function. It should be equivalent to iterator.map_ok(function).flatten_ok().