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