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