eq method

Expr eq(
  1. Object other
)

Predicate that checks if this expression is equal to other.

Implementation

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