bitwiseAnd method

Expression<int> bitwiseAnd(
  1. Expression<int> other
)

Returns the bitwise-and operation between this and other.

Implementation

Expression<int> bitwiseAnd(Expression<int> other) {
  return BaseInfixOperator(this, '&', other, precedence: Precedence.bitwise);
}