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