---
title: "init(_:_:_:)"
framework: combine
role: symbol
role_heading: Initializer
path: "combine/publishers/zip3/init(_:_:_:)"
---

# init(_:_:_:)

Creates a publisher that applies the zip function to three upstream publishers.

## Declaration

```swift
init(_ a: A, _ b: B, _ c: C)
```

## Parameters

- `a`: A publisher to zip.
- `b`: A second publisher to zip.
- `c`: A third publisher to zip.
