Namespace: FsToolkit.ErrorHandling
FsToolkit.ErrorHandling
Function Signature:
Async<Result<'a, 'b>> seq -> Async<Result<'a seq, 'b seq>>
Note that sequence is the same as traverse id. See also Seq.traverseAsyncResultA.
sequence
traverse id
This is applicative, collecting all errors.
This is the same as sequenceResultA except that it uses Async<Result<_,_>> instead of Result<_,_>.
Async<Result<_,_>>
Result<_,_>
See also Scott Wlaschin's Understanding traverse and sequencearrow-up-right.
Last updated 1 year ago