# RegexPattern.==(_:_:)

- **Module:** RegexPattern
- **Package:** libtmux-swift
- **Language:** Swift
- **Kind:** function
- **Source:** https://github.com/libtmux/libtmux-swift/blob/254f8b2be7eb60cacc3ffcb3ea8e456784f582df/Sources/LibTmux/RegexPattern.swift#L147
- **Page:** https://libtmux.org/en/swift/latest/reference/regexpattern-(_-_-)-2goe/

```
RegexPattern.==(_:_:)(lhs: `Self`, rhs: `Self`) -> Bool
```

Returns a Boolean value indicating whether two values are equal.

Equality is the inverse of inequality. For any values `a` and `b`,
`a == b` implies that `a != b` is `false`.

- Parameters:
  - lhs: A value to compare.
  - rhs: Another value to compare.
