> 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/task/zip.md).

# zip

Namespace: `FsToolkit.ErrorHandling`

Takes two tasks and returns a tuple of the pair

## Function Signature

```fsharp
Task<'left> -> Task<'right> -> Task<('left * 'right)>
```

## Examples

### Example 1

```fsharp
let left = Task.singleton 123
let right = Task.singleton "abc"

Task.zip left right
// task { (123, "abc") }
```
