Last updated 7 months ago
Namespace: FsToolkit.ErrorHandling
FsToolkit.ErrorHandling
Function Signature:
Async<Result<'a, 'b>> seq -> Async<Result<'a seq, 'b>>
Note that sequence is the same as traverse id. See also .
sequence
traverse id
This is monadic, stopping on the first error.
This is the same as except that it uses Async<Result<_,_>> instead of Result<_,_>.
Async<Result<_,_>>
Result<_,_>
See also Scott Wlaschin's .