MatrixInt.op_BitwiseOr Operator

Overload List

#SignatureDescription
1MatrixInt op_BitwiseOr(MatrixInt Left, MatrixInt Right)Computes bitwise "or" between Left and right.
2MatrixInt op_BitwiseOr(MatrixInt Left, TMtxInt Right)Computes bitwise "or" between Left and right.
3MatrixInt op_BitwiseOr(TMtxInt Left, MatrixInt Right)Computes bitwise "or" between Left and right.

Overload 1: MatrixInt op_BitwiseOr(MatrixInt Left, MatrixInt Right)

Computes bitwise "or" between Left and right.

#NameTypeDescription
1LeftMatrixInt
2RightMatrixInt

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

Overload 2: MatrixInt op_BitwiseOr(MatrixInt Left, TMtxInt Right)

Computes bitwise "or" between Left and right.

#NameTypeDescription
1LeftMatrixInt
2RightTMtxIntsource TMtxInt

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

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

Computes bitwise "or" between Left and right.

#NameTypeDescription
1LeftTMtxIntsource TMtxInt
2RightMatrixInt

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