yq/pkg/yqlib/doc/headers/equals.md
2021-11-03 22:37:07 +11:00

233 B

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)