MatrixInt.op_ExclusiveOr Operator

Overload List

#SignatureDescription
1MatrixInt op_ExclusiveOr(MatrixInt Left, MatrixInt Right)Performs logical "xor" between Left and Right.
2MatrixInt op_ExclusiveOr(MatrixInt Left, TMtxInt Right)Performs logical "xor" between Left and Right.
3MatrixInt 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.

#NameTypeDescription
1LeftMatrixInt
2RightMatrixInt

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.

#NameTypeDescription
1LeftMatrixInt
2RightTMtxIntsource TMtxInt

Result: stored in self (calling object), returns self for chaining

Overload 3: MatrixInt op_ExclusiveOr(TMtxInt Left, MatrixInt Right)

Performs logical "xor" between Left and Right.

#NameTypeDescription
1LeftTMtxIntsource TMtxInt
2RightMatrixInt

Result: stored in self (calling object), returns self for chaining