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
"""Apply the given function to each element, returning a result.Ok-wrapped collection of resulting values if every application succeeds, otherwise a result.Error wrapping all error values.
65
+
66
+
Args:
67
+
inputs (Iterable[_TInput]): the elements to input to the given function
68
+
func (Callable[[_TInput], Result[_TSource, _TError]]): the function to apply to each element
69
+
70
+
Returns:
71
+
Result[list[_TSource], list[_TError]]: either a result.Ok-wrapped collection of resulting values
72
+
of every application succeeds, otherwise a result.Error wrapping all error values
0 commit comments