Overload List
| # | Signature | Description |
|---|---|---|
| 1 | class operator BitwiseXor(const Left: MatrixInt; const Right: MatrixInt): MatrixInt; | Performs logical "xor" between Left and Right. |
| 2 | class operator BitwiseXor(const Left: MatrixInt; const Right: TMtxInt): MatrixInt; | Performs logical "xor" between Left and Right. |
| 3 | class operator BitwiseXor(const Left: TMtxInt; const Right: MatrixInt): MatrixInt; | Performs logical "xor" between Left and Right. |
Overload 1: class operator BitwiseXor(const Left: MatrixInt; const Right: MatrixInt): MatrixInt;
Performs logical "xor" between Left and Right.
Result: stored in self (calling object), returns self for chaining
Overload 2: class operator BitwiseXor(const Left: MatrixInt; const Right: TMtxInt): MatrixInt;
Performs logical "xor" between Left and Right.
Result: stored in self (calling object), returns self for chaining