iff method

Expr iff(
  1. Object other
)

Assert that this expression is true if and only if other is true.

Implementation

Expr iff(Object other) => BinaryOp(BinaryOpKind.eq, this, $(other)).declare();