> 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/transforms/ofresult.md).

# ofResult

Namespace: `FsToolkit.ErrorHandling`

Transforms a `Result<'T, 'Error>` into an `Async<Result<'T, 'Error>>`.

## Function Signature

```fsharp
Result<'T, 'Error> -> Async<Result<'T, 'Error>>
```

## Examples

### Example 1

```fsharp
let result = AsyncResult.ofResult (Ok 42)
// async { return Ok 42 }
```

### Example 2

```fsharp
let result = AsyncResult.ofResult (Error "Boom!")
// async { return Error "Boom!" }
```
