Overload List
| # | Signature | Description |
|---|---|---|
| 1 | VectorInt op_Addition(TVecInt Left, VectorInt Right) | Add coresponding elements in Left and Right. |
| 2 | VectorInt op_Addition(VectorInt Left, TVecInt Right) | Add coresponding elements in Left and Right. |
| 3 | VectorInt op_Addition(VectorInt Left, VectorInt Right) | Add coresponding elements in Left and Right. |
| 4 | VectorInt op_Addition(VectorInt Left, Int32 Right) | Add Right to all elements in Left and return result. |
| 5 | VectorInt 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.
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.
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.
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.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | VectorInt | |
| 2 | Right | Int32 |
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.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | Int32 | |
| 2 | Right | VectorInt |
Result: stored in self (calling object), returns self for chaining