MatrixInt.op_BitwiseAnd Operator

Overload List

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

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

Computes bitwise "and" between Left and right.

#NameTypeDescription
1LeftMatrixInt
2RightMatrixInt

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

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

Computes bitwise "and" between Left and right.

#NameTypeDescription
1LeftMatrixInt
2RightTMtxIntsource TMtxInt

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

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

Computes bitwise "and" between Left and right.

#NameTypeDescription
1LeftTMtxIntsource TMtxInt
2RightMatrixInt

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