pub fn not(a: Expression) -> Expression
Expand description

Negates the expression with NOT. E.g., a < b becomes NOT a < b.

Tip: you can use !a or a.not() to do this, instead.