Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function 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; | ||
| 2 | function BinaryXor(const Src1: TMtxVecInt; const Src2: TMtxVecInt): TMtxVecInt; | Apply binary "xor" between coresponding elements in Src1 and Src2. |
| 3 | function 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; | ||
| 4 | function 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; | ||
| 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. |
Overload 1: function BinaryXor(const Src: TMtxVecInt): TMtxVecInt;
Apply binary "xor" between coresponding elements in Src and Self.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt |
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.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt | |
| 2 | SrcIndex | Integer | source start index |
| 3 | Index | Integer | start index |
| 4 | Len | Integer | element 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.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src1 | TMtxVecInt | |
| 2 | Src2 | TMtxVecInt |
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.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt | |
| 2 | Value | Integer |
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.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt | |
| 2 | Value | Integer | |
| 3 | SrcIndex | Integer | source start index |
| 4 | Index | Integer | start index |
| 5 | Len | Integer | element 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.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | Integer |
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.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | Integer | |
| 2 | Index | Integer | start index |
| 3 | Len | Integer | element 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.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src1 | TMtxVecInt | |
| 2 | Src2 | TMtxVecInt | |
| 3 | SrcIndex1 | Integer | |
| 4 | SrcIndex2 | Integer | |
| 5 | Index | Integer | start index |
| 6 | Len | Integer | element 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].