Overload List
| # | Signature | Description |
|---|---|---|
| 1 | class operator BitwiseOr(const Left: MatrixInt; const Right: MatrixInt): MatrixInt; | Computes bitwise "or" between Left and right. |
| 2 | class operator BitwiseOr(const Left: MatrixInt; const Right: TMtxInt): MatrixInt; | Computes bitwise "or" between Left and right. |
| 3 | class operator BitwiseOr(const Left: TMtxInt; const Right: MatrixInt): MatrixInt; | Computes bitwise "or" between Left and right. |
Overload 1: class operator BitwiseOr(const Left: MatrixInt; const Right: MatrixInt): MatrixInt;
Computes bitwise "or" between Left and right.
Result: stored in self (calling object), returns self for chaining
Overload 2: class operator BitwiseOr(const Left: MatrixInt; const Right: TMtxInt): MatrixInt;
Computes bitwise "or" between Left and right.
Result: stored in self (calling object), returns self for chaining