> 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/sequences/sequenceasyncresultm.md).

# sequenceAsyncResultM

### Seq.sequenceAsyncResultM

Namespace: `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 [Seq.traverseAsyncResultM](/fstoolkit-errorhandling/fstoolkit.errorhandling/asyncresult/sequences/traverseasyncresultm.md).

This is monadic, stopping on the first error.

This is the same as [sequenceResultM](/fstoolkit-errorhandling/fstoolkit.errorhandling/result/sequences/sequenceresultm.md) 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
