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