---
title: "==(_:_:)"
framework: combine
role: symbol
role_heading: Operator
path: "combine/publishers/ignoreoutput/==(_:_:)"
---

# ==(_:_:)

Returns a Boolean value that indicates whether two publishers are equivalent.

## Declaration

```swift
static func == (lhs: Publishers.IgnoreOutput<Upstream>, rhs: Publishers.IgnoreOutput<Upstream>) -> Bool
```

## Parameters

- `lhs`: An ignore output publisher to compare for equality.
- `rhs`: Another ignore output publisher to compare for equality.

## Return Value

Return Value true if the two publishers have equal upstream publishers; otherwise false.
