VectorInt.op_ExclusiveOr Operator

Overload List

#SignatureDescription
1VectorInt op_ExclusiveOr(TVecInt Left, VectorInt Right)Performs logical "xor" between Left and Right.
2VectorInt op_ExclusiveOr(VectorInt Left, TVecInt Right)Performs logical "xor" between Left and Right.
3VectorInt op_ExclusiveOr(VectorInt Left, VectorInt Right)Performs logical "xor" between Left and Right.

Overload 1: VectorInt op_ExclusiveOr(TVecInt Left, VectorInt Right)

Performs logical "xor" between Left and Right.

#NameTypeDescription
1LeftTVecIntsource TVecInt
2RightVectorInt

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

Overload 2: VectorInt op_ExclusiveOr(VectorInt Left, TVecInt Right)

Performs logical "xor" between Left and Right.

#NameTypeDescription
1LeftVectorInt
2RightTVecIntsource TVecInt

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

Overload 3: VectorInt op_ExclusiveOr(VectorInt Left, VectorInt Right)

Performs logical "xor" between Left and Right.

#NameTypeDescription
1LeftVectorInt
2RightVectorInt

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