Overload List
| # | Signature | Description |
|---|---|---|
| 1 | Vector op_Addition(TCplx Left, Vector Right) | Add left to all elements in Right and return result. |
| 2 | Vector op_Addition(TMtxVec Left, Vector Right) | Add coresponding elements in Left and Right. |
| 3 | Vector op_Addition(Vector Left, TCplx Right) | Add Right to all elements in Left and return result. |
| 4 | Vector op_Addition(Vector Left, TMtxVec Right) | Add coresponding elements in Left and Right. |
| 5 | Vector op_Addition(Vector Left, Vector Right) | Add coresponding elements in Left and Right. |
| 6 | Vector op_Addition(Vector Left, Double Right) | Add Right to all elements in Left and return result. |
| 7 | Vector op_Addition(Double Left, Vector Right) | Add left to all elements in Right and return result. |
Overload 1: Vector op_Addition(TCplx Left, Vector Right)
Add left to all elements in Right and return result.
Result: stored in self (calling object), returns self for chaining
Overload 2: Vector op_Addition(TMtxVec Left, Vector Right)
Add coresponding elements in Left and Right.
Result: stored in self (calling object), returns self for chaining
Overload 3: Vector op_Addition(Vector Left, TCplx Right)
Add Right to all elements in Left and return result.
Result: stored in self (calling object), returns self for chaining
Overload 4: Vector op_Addition(Vector Left, TMtxVec Right)
Add coresponding elements in Left and Right.
Result: stored in self (calling object), returns self for chaining
Overload 5: Vector op_Addition(Vector Left, Vector Right)
Add coresponding elements in Left and Right.
Result: stored in self (calling object), returns self for chaining
Overload 6: Vector op_Addition(Vector Left, Double Right)
Add Right to all elements in Left and return result.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | Vector | |
| 2 | Right | Double | scalar |
Result: stored in self (calling object), returns self for chaining
Overload 7: Vector op_Addition(Double Left, Vector Right)
Add left to all elements in Right and return result.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | Double | scalar |
| 2 | Right | Vector |
Result: stored in self (calling object), returns self for chaining