MatrixInt.BinaryXor Method

Overload List

#SignatureDescription
1function BinaryXor(const Src: TMtxVecInt): TMtxVecInt;Apply binary "xor" between coresponding elements in Src and Self.
└ indexed: function BinaryXor(const Src: TMtxVecInt; const SrcIndex: Integer; const Index: Integer; const Len: Integer): TMtxVecInt;
2function BinaryXor(const Src1: TMtxVecInt; const Src2: TMtxVecInt): TMtxVecInt;Apply binary "xor" between coresponding elements in Src1 and Src2.
3function BinaryXor(const Src: TMtxVecInt; const Value: Integer): TMtxVecInt;Apply binary "xor" between elements in Src and Value.
└ indexed: function BinaryXor(const Src: TMtxVecInt; const Value: Integer; const SrcIndex: Integer; const Index: Integer; const Len: Integer): TMtxVecInt;
4function BinaryXor(const Value: Integer): TMtxVecInt;Apply binary "xor" between elements in the calling object and Value.
└ indexed: function BinaryXor(const Value: Integer; const Index: Integer; const Len: Integer): TMtxVecInt;
5function BinaryXor(const Src1: TMtxVecInt; const Src2: TMtxVecInt; const SrcIndex1: Integer; const SrcIndex2: Integer; const Index: Integer; const Len: Integer): TMtxVecInt;Apply binary "xor" between coresponding elements in Src1 and Src2.

Overload 1: function BinaryXor(const Src: TMtxVecInt): TMtxVecInt;

Apply binary "xor" between coresponding elements in Src and Self.

#NameTypeDescription
1SrcTMtxVecInt

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

Returns: the result of binary "xor" of Src values with coresponding values in Self (this).

Indexed: function BinaryXor(const Src: TMtxVecInt; const SrcIndex: Integer; const Index: Integer; const Len: Integer): TMtxVecInt;

Apply binary "xor" between coresponding elements in Src and Self.

#NameTypeDescription
1SrcTMtxVecInt
2SrcIndexIntegersource start index
3IndexIntegerstart index
4LenIntegerelement count

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

Returns: the result of binary "xor" of Src values [SrcIndex]...[SrcIndex+Len-1] with coresponding values in Self (this) [Index]..[Index+Len-1] stored back in the calling object.

Overload 2: function BinaryXor(const Src1: TMtxVecInt; const Src2: TMtxVecInt): TMtxVecInt;

Apply binary "xor" between coresponding elements in Src1 and Src2.

#NameTypeDescription
1Src1TMtxVecInt
2Src2TMtxVecInt

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

Returns: the result of binary "xor" of Src1 values with coresponding Src2 values stored in the calling object.

Overload 3: function BinaryXor(const Src: TMtxVecInt; const Value: Integer): TMtxVecInt;

Apply binary "xor" between elements in Src and Value.

#NameTypeDescription
1SrcTMtxVecInt
2ValueInteger

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

Returns: the result of binary "xor" of Value with coresponding values in Src stored in the calling object.

Indexed: function BinaryXor(const Src: TMtxVecInt; const Value: Integer; const SrcIndex: Integer; const Index: Integer; const Len: Integer): TMtxVecInt;

Apply binary "xor" between elements in Src and Value.

#NameTypeDescription
1SrcTMtxVecInt
2ValueInteger
3SrcIndexIntegersource start index
4IndexIntegerstart index
5LenIntegerelement count

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

Returns: the result of binary "xor" of Value with coresponding values in Src [SrcIndex]..[SrcIndex+Len-1] stored in the calling object at locations [Index]..[Index+Len-1].

Overload 4: function BinaryXor(const Value: Integer): TMtxVecInt;

Apply binary "xor" between elements in the calling object and Value.

#NameTypeDescription
1ValueInteger

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

Returns: the result of binary "xor" between Value and values in the calling object.

Indexed: function BinaryXor(const Value: Integer; const Index: Integer; const Len: Integer): TMtxVecInt;

Apply binary "xor" between elements in the calling object and Value.

#NameTypeDescription
1ValueInteger
2IndexIntegerstart index
3LenIntegerelement count

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

Returns: the result of binary "xor" between Value and values in the calling object at locations [Index]..[Index+Len-1] stored back in the calling object.

Overload 5: function BinaryXor(const Src1: TMtxVecInt; const Src2: TMtxVecInt; const SrcIndex1: Integer; const SrcIndex2: Integer; const Index: Integer; const Len: Integer): TMtxVecInt;

Apply binary "xor" between coresponding elements in Src1 and Src2.

#NameTypeDescription
1Src1TMtxVecInt
2Src2TMtxVecInt
3SrcIndex1Integer
4SrcIndex2Integer
5IndexIntegerstart index
6LenIntegerelement count

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

Returns: the result of binary "xor" of Src1 values [SrcIndex1]..[SrcIndex1+Len-1] with coresponding Src2 values [SrcIndex2]..[SrcIndex2+Len-1] stored in the calling object at locations [Index]..[Index+Len-1].