yq/pkg/yqlib/doc/operators/headers/equals.md

14 lines
233 B
Markdown
Raw Normal View History

2021-11-03 04:00:58 +00:00
# Equals
This is a boolean operator that will return `true` if the LHS is equal to the RHS and `false` otherwise.
2020-11-17 22:44:16 +00:00
```
.a == .b
```
It is most often used with the select operator to find particular nodes:
```
select(.a == .b)
```