VectorInt.BitwiseOr Operator

Overload List

#SignatureDescription
1class operator BitwiseOr(const Left: TVecInt; const Right: VectorInt): VectorInt;Computes bitwise "or" between Left and right.
2class operator BitwiseOr(const Left: VectorInt; const Right: TVecInt): VectorInt;Computes bitwise "or" between Left and right.
3class operator BitwiseOr(const Left: VectorInt; const Right: VectorInt): VectorInt;Computes bitwise "or" between Left and right.

Overload 1: class operator BitwiseOr(const Left: TVecInt; const Right: VectorInt): VectorInt;

Computes bitwise "or" between Left and right.

#NameTypeDescription
1LeftTVecIntsource TVecInt
2RightVectorInt

Result: stored in self (calling object), returns self for chaining

Overload 2: class operator BitwiseOr(const Left: VectorInt; const Right: TVecInt): VectorInt;

Computes bitwise "or" between Left and right.

#NameTypeDescription
1LeftVectorInt
2RightTVecIntsource TVecInt

Result: stored in self (calling object), returns self for chaining

Overload 3: class operator BitwiseOr(const Left: VectorInt; const Right: VectorInt): VectorInt;

Computes bitwise "or" between Left and right.

#NameTypeDescription
1LeftVectorInt
2RightVectorInt

Result: stored in self (calling object), returns self for chaining