Equals
Last updated
Was this helpful?
Last updated
Was this helpful?
This is a boolean operator that will return true
if the LHS is equal to the RHS and false
otherwise.
It is most often used with the select operator to find particular nodes:
The not equals !=
operator returns false
if the LHS is equal to the RHS.
comparison (>=
, <
etc) operators
boolean operators (and
, or
, any
etc)
select operator
Given a sample.yml file of:
then
will output
Given a sample.yml file of:
then
will output
Given a sample.yml file of:
then
will output
Given a sample.yml file of:
then
will output
Running
will output
Given a sample.yml file of:
then
will output
Given a sample.yml file of:
then
will output