VectorInt.BitwiseXor Operator

Overload List

#SignatureDescription
1class operator BitwiseXor(const Left: TVecInt; const Right: VectorInt): VectorInt;Performs logical "xor" between Left and Right.
2class operator BitwiseXor(const Left: VectorInt; const Right: TVecInt): VectorInt;Performs logical "xor" between Left and Right.
3class operator BitwiseXor(const Left: VectorInt; const Right: VectorInt): VectorInt;Performs logical "xor" between Left and Right.

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

Performs logical "xor" between Left and Right.

#NameTypeDescription
1LeftTVecIntsource TVecInt
2RightVectorInt

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

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

Performs logical "xor" between Left and Right.

#NameTypeDescription
1LeftVectorInt
2RightTVecIntsource TVecInt

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

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

Performs logical "xor" between Left and Right.

#NameTypeDescription
1LeftVectorInt
2RightVectorInt

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