Updated equals doc

This commit is contained in:
Mike Farah
2022-03-16 10:16:49 +11:00
parent d27fb0ec78
commit 4bb2fa1652
2 changed files with 6 additions and 2 deletions
+3 -1
View File
@@ -1,4 +1,4 @@
# Equals
# Equals / Not Equals
This is a boolean operator that will return `true` if the LHS is equal to the RHS and `false` otherwise.
@@ -11,3 +11,5 @@ It is most often used with the select operator to find particular nodes:
```
select(.a == .b)
```
The not equals `!=` operator returns `false` if the LHS is equal to the RHS.