VectorInt.op_Addition Operator

Overload List

#SignatureDescription
1VectorInt op_Addition(TVecInt Left, VectorInt Right)Add coresponding elements in Left and Right.
2VectorInt op_Addition(VectorInt Left, TVecInt Right)Add coresponding elements in Left and Right.
3VectorInt op_Addition(VectorInt Left, VectorInt Right)Add coresponding elements in Left and Right.
4VectorInt op_Addition(VectorInt Left, Int32 Right)Add Right to all elements in Left and return result.
5VectorInt op_Addition(Int32 Left, VectorInt Right)Add left to all elements in Right and return result.

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

Add coresponding elements in Left and Right.

#NameTypeDescription
1LeftTVecIntsource TVecInt
2RightVectorInt

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

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

Add coresponding elements in Left and Right.

#NameTypeDescription
1LeftVectorInt
2RightTVecIntsource TVecInt

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

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

Add coresponding elements in Left and Right.

#NameTypeDescription
1LeftVectorInt
2RightVectorInt

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

Overload 4: VectorInt op_Addition(VectorInt Left, Int32 Right)

Add Right to all elements in Left and return result.

#NameTypeDescription
1LeftVectorInt
2RightInt32

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

Overload 5: VectorInt op_Addition(Int32 Left, VectorInt Right)

Add left to all elements in Right and return result.

#NameTypeDescription
1LeftInt32
2RightVectorInt

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