Last updated 7 months ago
Namespace: FsToolkit.ErrorHandling
FsToolkit.ErrorHandling
Function Signature:
('a -> Async<Result<'b,'c>>) -> 'a seq -> Async<Result<'b seq, 'c seq>>
Note that traverse is the same as map >> sequence. See also .
traverse
map >> sequence
This is applicative, collecting all errors.
This is the same as except that it uses Async<Result<_,_>> instead of Result<_,_>.
Async<Result<_,_>>
Result<_,_>
See also Scott Wlaschin's .