> For the complete documentation index, see [llms.txt](https://demystifyfp.gitbook.io/fstoolkit-errorhandling/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://demystifyfp.gitbook.io/fstoolkit-errorhandling/fstoolkit.errorhandling/asyncresult/list/traverseasyncresultm.md).

# traverseAsyncResultM

### List.traverseAsyncResultM

Namespace: `FsToolkit.ErrorHandling`

Function Signature:

```
('a -> Async<Result<'b,'c>>) -> 'a list -> Async<Result<'b list, 'c>>
```

Note that `traverse` is the same as `map >> sequence`. See also [List.sequenceAsyncResultM](/fstoolkit-errorhandling/fstoolkit.errorhandling/asyncresult/list/sequenceasyncresultm.md).

This is monadic, stopping on the first error.

This is the same as [traverseResultM](broken://pages/-LO2mp-EluHSG7K56kGT) except that it uses `Async<Result<_,_>>` instead of `Result<_,_>`.

See also Scott Wlaschin's [Understanding traverse and sequence](https://fsharpforfunandprofit.com/posts/elevated-world-4/).

### Examples
