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