in_ method

Expr in_(
  1. Expr rhs
)

Implementation

Expr in_(Expr rhs) {
  return ExprIn(left: this, right: rhs);
}