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

# ==(_:_:)

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

## Declaration

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

## Parameters

- `lhs`: A drop publisher to compare for equality.
- `rhs`: Another drop publisher to compare for equality.

## Return Value

Return Value true if the publishers have equal upstream and count properties; otherwise false.
