Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function BinaryAnd(const Src: TMtxVecInt): TMtxVecInt; | Apply binary "and" between coresponding elements in Src and Self. |
| └ indexed: function BinaryAnd(const Src: TMtxVecInt; SrcIndex: Integer; Index: Integer; Len: Integer): TMtxVecInt; | ||
| 2 | function BinaryAnd(const Src1: TMtxVecInt; const Src2: TMtxVecInt): TMtxVecInt; | Apply binary "and" between coresponding elements in Src1 and Src2. |
| 3 | function BinaryAnd(const Src: TMtxVecInt; Value: Integer): TMtxVecInt; | Apply binary "and" between elements in Src and Value. |
| └ indexed: function BinaryAnd(const Src: TMtxVecInt; Value: Integer; SrcIndex: Integer; Index: Integer; Len: Integer): TMtxVecInt; | ||
| 4 | function BinaryAnd(Value: Integer): TMtxVecInt; | Apply binary "and" between elements in the calling object and Value. |
| └ indexed: function BinaryAnd(Value: Integer; Index: Integer; Len: Integer): TMtxVecInt; | ||
| 5 | function BinaryAnd(const Src1: TMtxVecInt; const Src2: TMtxVecInt; SrcIndex1: Integer; SrcIndex2: Integer; Index: Integer; Len: Integer): TMtxVecInt; | Apply binary "and" between coresponding elements in Src1 and Src2. |
Overload 1: function BinaryAnd(const Src: TMtxVecInt): TMtxVecInt;
Apply binary "and" between coresponding elements in Src and Self.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt | source TVecInt or TMtxInt |
Result: stored in self (calling object), returns self for chaining
Returns: the result of binary "and" of Src values with coresponding values in Self (this).
Indexed: function BinaryAnd(const Src: TMtxVecInt; SrcIndex: Integer; Index: Integer; Len: Integer): TMtxVecInt;
Apply binary "and" between coresponding elements in Src and Self.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt | source TVecInt or TMtxInt |
| 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 "and" of Src values [SrcIndex]...[SrcIndex+Len-1] with coresponding values in Self (this) [Index]..[Index+Len-1].
Overload 2: function BinaryAnd(const Src1: TMtxVecInt; const Src2: TMtxVecInt): TMtxVecInt;
Apply binary "and" between coresponding elements in Src1 and Src2.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src1 | TMtxVecInt | source TVecInt or TMtxInt |
| 2 | Src2 | TMtxVecInt | source TVecInt or TMtxInt |
Result: stored in self (calling object), returns self for chaining
Returns the result of binary "and" of Src1 values with coresponding Src2 values stored in the calling object.
Overload 3: function BinaryAnd(const Src: TMtxVecInt; Value: Integer): TMtxVecInt;
Apply binary "and" between elements in Src and Value.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt | source TVecInt or TMtxInt |
| 2 | Value | Integer |
Result: stored in self (calling object), returns self for chaining
Returns: the result of binary "and" of Value with coresponding values in Src stored in the calling object.
Indexed: function BinaryAnd(const Src: TMtxVecInt; Value: Integer; SrcIndex: Integer; Index: Integer; Len: Integer): TMtxVecInt;
Apply binary "and" between elements in Src and Value.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt | source TVecInt or TMtxInt |
| 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 "and" 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 BinaryAnd(Value: Integer): TMtxVecInt;
Apply binary "and" 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 "and" between Value and values in the calling object.
Indexed: function BinaryAnd(Value: Integer; Index: Integer; Len: Integer): TMtxVecInt;
Apply binary "and" 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 "and" between Value and values in the calling object at locations [Index]..[Index+Len-1].
Overload 5: function BinaryAnd(const Src1: TMtxVecInt; const Src2: TMtxVecInt; SrcIndex1: Integer; SrcIndex2: Integer; Index: Integer; Len: Integer): TMtxVecInt;
Apply binary "and" between coresponding elements in Src1 and Src2.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src1 | TMtxVecInt | source TVecInt or TMtxInt |
| 2 | Src2 | TMtxVecInt | source TVecInt or TMtxInt |
| 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 "and" 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].