Compare
Compare values for use in conditional expressions.
Compare
eqReports numeric equality across the int and float kinds, so 5 equals
5.0.{{ total | eq:5.0 }}gtReports whether the first value exceeds the second, comparing both as
numbers so 5 and 5.0 rank the same.{{ score | gt:70 }}gteReports whether the first value is greater than or equal to the second,
comparing both as numbers so 5 and 5.0 rank the same.{{ score | gte:70 }}notInverts the truthiness of the value, following the same rules as a
template if: booleans by their value, numbers true when greater than zero,
strings true when non-empty (except the literal "false"), and collections
true when non-empty.{{ name | not }}