operator & method

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

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

For a bitwise-and on two numbers, see BitwiseInt.bitwiseAnd.

Implementation

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