bitOr method

Expression bitOr(
  1. Expression bitsOther
)

Performs bitwise OR with another expression

Implementation

Expression bitOr(Expression bitsOther) {
  return _BitOrExpression(this, bitsOther);
}