bitwiseAnd method
Returns the bitwise-and operation between this
and other
.
Implementation
Expression<int> bitwiseAnd(Expression<int> other) {
return BaseInfixOperator(this, '&', other, precedence: Precedence.bitwise);
}
Returns the bitwise-and operation between this
and other
.
Expression<int> bitwiseAnd(Expression<int> other) {
return BaseInfixOperator(this, '&', other, precedence: Precedence.bitwise);
}