VectorInt.op_BitwiseAnd Operator

Overload List

#SignatureDescription
1VectorInt op_BitwiseAnd(TVecInt Left, VectorInt Right)Computes bitwise "and" between Left and right.
2VectorInt op_BitwiseAnd(VectorInt Left, TVecInt Right)Computes bitwise "and" between Left and right.
3VectorInt op_BitwiseAnd(VectorInt Left, VectorInt Right)Computes bitwise "and" between Left and right.

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

Computes bitwise "and" between Left and right.

#NameTypeDescription
1LeftTVecIntsource TVecInt
2RightVectorInt

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

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

Computes bitwise "and" between Left and right.

#NameTypeDescription
1LeftVectorInt
2RightTVecIntsource TVecInt

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

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

Computes bitwise "and" between Left and right.

#NameTypeDescription
1LeftVectorInt
2RightVectorInt

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