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