bitwiseOr method

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

Returns the bitwise-or operation between this and other.

Implementation

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