TMtxByte.BinaryOr Method

Overload List

#SignatureDescription
1function BinaryOr(const Src: TMtxVecInt): TMtxVecInt;Apply binary "or" between coresponding elements in Src and Self.
└ indexed: function BinaryOr(const Src: TMtxVecInt; SrcIndex: Integer; Index: Integer; Len: Integer): TMtxVecInt;
2function BinaryOr(const Src1: TMtxVecInt; const Src2: TMtxVecInt): TMtxVecInt;Apply binary "or" between coresponding elements in Src1 and Src2.
3function BinaryOr(const Src: TMtxVecInt; Value: Integer): TMtxVecInt;Apply binary "or" between elements in Src and Value.
└ indexed: function BinaryOr(const Src: TMtxVecInt; Value: Integer; SrcIndex: Integer; Index: Integer; Len: Integer): TMtxVecInt;
4function BinaryOr(Value: Integer): TMtxVecInt;Apply binary "or" between elements in the calling object and Value.
└ indexed: function BinaryOr(Value: Integer; Index: Integer; Len: Integer): TMtxVecInt;
5function BinaryOr(const Src1: TMtxVecInt; const Src2: TMtxVecInt; SrcIndex1: Integer; SrcIndex2: Integer; Index: Integer; Len: Integer): TMtxVecInt;Apply binary "or" between coresponding elements in Src1 and Src2.

Overload 1: function BinaryOr(const Src: TMtxVecInt): TMtxVecInt;

Apply binary "or" between coresponding elements in Src and Self.

#NameTypeDescription
1SrcTMtxVecIntsource 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: function BinaryOr(const Src: TMtxVecInt; SrcIndex: Integer; Index: Integer; Len: Integer): TMtxVecInt;

Apply binary "or" between coresponding elements in Src and Self.

#NameTypeDescription
1SrcTMtxVecIntsource TVecInt or TMtxInt
2SrcIndexIntegersource start index
3IndexIntegerstart index
4LenIntegerelement 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: function BinaryOr(const Src1: TMtxVecInt; const Src2: TMtxVecInt): TMtxVecInt;

Apply binary "or" between coresponding elements in Src1 and Src2.

#NameTypeDescription
1Src1TMtxVecIntsource TVecInt or TMtxInt
2Src2TMtxVecIntsource 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 BinaryOr(const Src: TMtxVecInt; Value: Integer): TMtxVecInt;

Apply binary "or" between elements in Src and Value.

#NameTypeDescription
1SrcTMtxVecIntsource TVecInt or TMtxInt
2ValueInteger

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: function BinaryOr(const Src: TMtxVecInt; Value: Integer; SrcIndex: Integer; Index: Integer; Len: Integer): TMtxVecInt;

Apply binary "or" between elements in Src and Value.

#NameTypeDescription
1SrcTMtxVecIntsource TVecInt or TMtxInt
2ValueInteger
3SrcIndexIntegersource start index
4IndexIntegerstart index
5LenIntegerelement 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: function BinaryOr(Value: Integer): TMtxVecInt;

Apply binary "or" between elements in the calling object and Value.

#NameTypeDescription
1ValueInteger

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: function BinaryOr(Value: Integer; Index: Integer; Len: Integer): TMtxVecInt;

Apply binary "or" between elements in the calling object and Value.

#NameTypeDescription
1ValueInteger
2IndexIntegerstart index
3LenIntegerelement 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: function BinaryOr(const Src1: TMtxVecInt; const Src2: TMtxVecInt; SrcIndex1: Integer; SrcIndex2: Integer; Index: Integer; Len: Integer): TMtxVecInt;

Apply binary "or" between coresponding elements in Src1 and Src2.

#NameTypeDescription
1Src1TMtxVecIntsource TVecInt or TMtxInt
2Src2TMtxVecIntsource TVecInt or TMtxInt
3SrcIndex1Integer
4SrcIndex2Integer
5IndexIntegerstart index
6LenIntegerelement 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].