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

# ==(_:_:)

Returns a Boolean value that indicates whether two publishers are equivalent. /// - Parameters:

## Declaration

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

## Return Value

Return Value true if the two publishers’ upstream properties are equal; otherwise false.

## Discussion

Discussion lhs: A Count instance to compare. rhs: Another Count instance to compare.
