operator & method

Expression<bool?> operator &(
  1. Expression<bool?> other
)

Returns an expression that is true iff both this and other are true.

Implementation

Expression<bool?> operator &(Expression<bool?> other) {
  return _BaseInfixOperator(this, 'AND', other, precedence: Precedence.and);
}