and method

Expr and(
  1. Expr rhs
)

Implementation

Expr and(Expr rhs) {
  return ExprAnd(left: this, right: rhs);
}