---
title: "==(_:_:)"
framework: synchronization
role: symbol
role_heading: Operator
path: "synchronization/wordpair/==(_:_:)"
---

# ==(_:_:)

Compares two values of this type to determine if they are equivalent to each other.

## Declaration

```swift
static func == (lhs: WordPair, rhs: WordPair) -> Bool
```

## Parameters

- `lhs`: The first value to compare.
- `rhs`: The second value to compare.

## Return Value

Return Value True if both values were equal, or false if they were unequal.
