1
0
mirror of https://github.com/mikefarah/yq.git synced 2025-01-22 21:55:42 +00:00
yq/pkg/yqlib/doc/operators/headers/equals.md
2021-12-21 14:46:38 +11:00

14 lines
233 B
Markdown

# Equals
This is a boolean operator that will return `true` if the LHS is equal to the RHS and `false` otherwise.
```
.a == .b
```
It is most often used with the select operator to find particular nodes:
```
select(.a == .b)
```