MatrixInt.BitwiseAnd Operator

Overload List

#SignatureDescription
1class operator BitwiseAnd(const Left: MatrixInt; const Right: MatrixInt): MatrixInt;Computes bitwise "and" between Left and right.
2class operator BitwiseAnd(const Left: MatrixInt; const Right: TMtxInt): MatrixInt;Computes bitwise "and" between Left and right.
3class operator BitwiseAnd(const Left: TMtxInt; const Right: MatrixInt): MatrixInt;Computes bitwise "and" between Left and right.

Overload 1: class operator BitwiseAnd(const Left: MatrixInt; const Right: MatrixInt): MatrixInt;

Computes bitwise "and" between Left and right.

#NameTypeDescription
1LeftMatrixInt
2RightMatrixInt

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

Overload 2: class operator BitwiseAnd(const Left: MatrixInt; const Right: TMtxInt): MatrixInt;

Computes bitwise "and" between Left and right.

#NameTypeDescription
1LeftMatrixInt
2RightTMtxIntsource TMtxInt

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

Overload 3: class operator BitwiseAnd(const Left: TMtxInt; const Right: MatrixInt): MatrixInt;

Computes bitwise "and" between Left and right.

#NameTypeDescription
1LeftTMtxIntsource TMtxInt
2RightMatrixInt

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