Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxVecInt *BinaryXor(int Value); | Apply binary "xor" between elements in the calling object and Value. |
| 2 | TMtxVecInt *BinaryXor(int Value, int Index, int Len); | Apply binary "xor" between elements in the calling object and Value. |
| 3 | TMtxVecInt *BinaryXor(TMtxVecInt *Src, int Value); | Apply binary "xor" between elements in Src and Value. |
| 4 | TMtxVecInt *BinaryXor(TMtxVecInt *Src, int Value, int SrcIndex, int Index, int Len); | Apply binary "xor" between elements in Src and Value. |
| 5 | TMtxVecInt *BinaryXor(TMtxVecInt *Src1, TMtxVecInt *Src2); | Apply binary "xor" between coresponding elements in Src1 and Src2. |
| 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. |
| 7 | TMtxVecInt *BinaryXor(TMtxVecInt *Src); | Apply binary "xor" between coresponding elements in Src and Self. |
| 8 | TMtxVecInt *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.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | int |
Returns: the result of binary "xor" between Value and values in the calling object.
Overload 2: TMtxVecInt *BinaryXor(int Value, int Index, int Len);
Apply binary "xor" between elements in the calling object and Value.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | int | |
| 2 | Index | int | |
| 3 | Len | int |
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 3: TMtxVecInt *BinaryXor(TMtxVecInt *Src, int Value);
Apply binary "xor" between elements in Src and Value.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt * | |
| 2 | Value | int |
Returns: the result of binary "xor" of Value with coresponding values in Src stored in the calling object.
Overload 4: TMtxVecInt *BinaryXor(TMtxVecInt *Src, int Value, int SrcIndex, int Index, int Len);
Apply binary "xor" between elements in Src and Value.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt * | |
| 2 | Value | int | |
| 3 | SrcIndex | int | |
| 4 | Index | int | |
| 5 | Len | int |
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 5: TMtxVecInt *BinaryXor(TMtxVecInt *Src1, TMtxVecInt *Src2);
Apply binary "xor" between coresponding elements in Src1 and Src2.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src1 | TMtxVecInt * | |
| 2 | Src2 | TMtxVecInt * |
Returns: the result of binary "xor" of Src1 values with coresponding Src2 values stored in the calling object.
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.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src1 | TMtxVecInt * | |
| 2 | Src2 | TMtxVecInt * | |
| 3 | SrcIndex1 | int | |
| 4 | SrcIndex2 | int | |
| 5 | Index | int | |
| 6 | Len | int |
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].
Overload 7: TMtxVecInt *BinaryXor(TMtxVecInt *Src);
Apply binary "xor" between coresponding elements in Src and Self.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt * |
Returns: the result of binary "xor" of Src values with coresponding values in Self (this).
Overload 8: TMtxVecInt *BinaryXor(TMtxVecInt *Src, int SrcIndex, int Index, int Len);
Apply binary "xor" between coresponding elements in Src and Self.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt * | |
| 2 | SrcIndex | int | |
| 3 | Index | int | |
| 4 | Len | int |
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.