TVecInt::BinaryXor Method

Overload List

#SignatureDescription
1TMtxVecInt *BinaryXor(int Value);Apply binary "xor" between elements in the calling object and Value.
2TMtxVecInt *BinaryXor(int Value, int Index, int Len);Apply binary "xor" between elements in the calling object and Value.
3TMtxVecInt *BinaryXor(TMtxVecInt *Src, int Value);Apply binary "xor" between elements in Src and Value.
4TMtxVecInt *BinaryXor(TMtxVecInt *Src, int Value, int SrcIndex, int Index, int Len);Apply binary "xor" between elements in Src and Value.
5TMtxVecInt *BinaryXor(TMtxVecInt *Src1, TMtxVecInt *Src2);Apply binary "xor" between coresponding elements in Src1 and Src2.
6TMtxVecInt *BinaryXor(TMtxVecInt *Src1, TMtxVecInt *Src2, int SrcIndex1, int SrcIndex2, int Index, int Len);Apply binary "xor" between coresponding elements in Src1 and Src2.
7TMtxVecInt *BinaryXor(TMtxVecInt *Src);Apply binary "xor" between coresponding elements in Src and Self.
8TMtxVecInt *BinaryXor(TMtxVecInt *Src, int SrcIndex, int Index, int Len);Apply binary "xor" between coresponding elements in Src and Self.

Overload 1: TMtxVecInt *BinaryXor(int Value);

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

#NameTypeDescription
1Valueint

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

Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler

Overload 2: TMtxVecInt *BinaryXor(int Value, int Index, int Len);

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

#NameTypeDescription
1Valueint
2Indexint
3Lenint

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.

Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler

Overload 3: TMtxVecInt *BinaryXor(TMtxVecInt *Src, int Value);

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

#NameTypeDescription
1SrcTMtxVecInt *
2Valueint

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

Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler

Overload 4: TMtxVecInt *BinaryXor(TMtxVecInt *Src, int Value, int SrcIndex, int Index, int Len);

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

#NameTypeDescription
1SrcTMtxVecInt *
2Valueint
3SrcIndexint
4Indexint
5Lenint

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].

Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler

Overload 5: TMtxVecInt *BinaryXor(TMtxVecInt *Src1, TMtxVecInt *Src2);

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

#NameTypeDescription
1Src1TMtxVecInt *
2Src2TMtxVecInt *

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

Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler

Overload 6: TMtxVecInt *BinaryXor(TMtxVecInt *Src1, TMtxVecInt *Src2, int SrcIndex1, int SrcIndex2, int Index, int Len);

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

#NameTypeDescription
1Src1TMtxVecInt *
2Src2TMtxVecInt *
3SrcIndex1int
4SrcIndex2int
5Indexint
6Lenint

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].

Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler

Overload 7: TMtxVecInt *BinaryXor(TMtxVecInt *Src);

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

#NameTypeDescription
1SrcTMtxVecInt *

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

Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler

Overload 8: TMtxVecInt *BinaryXor(TMtxVecInt *Src, int SrcIndex, int Index, int Len);

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

#NameTypeDescription
1SrcTMtxVecInt *
2SrcIndexint
3Indexint
4Lenint

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.

Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler