> 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.jobresult/jobresult/map3.md).

# map3

### JobResult.map3

Namespace: `FsToolkit.ErrorHandling`

Function Signature:

```fsharp
('a -> 'b -> 'c -> 'd)
  -> Job<Result<'a, 'e>>
  -> Job<Result<'b, 'e>>
  -> Job<Result<'c, 'e>>
  -> Job<Result<'d, 'e>>
```

### Examples

Note: Many use-cases requiring `map` operations can also be solved using [the `jobResult` computation expression](/fstoolkit-errorhandling/fstoolkit.errorhandling.jobresult/jobresult/ce.md).
