bitwiseAnd method

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

Returns the bitwise-and operation between this and other.

Note that, just like BitwiseInt, this still operates on 64-bit integers in SQL. The BigInt type on the expression only tells drift that the result should be integerpreted as a big integer, which is primarily useful on the web where large values cannot be stored in an int.

Implementation

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