Overload List
| # | Signature | Description |
|---|---|---|
| 1 | class operator Multiply(const Left: TVecInt; const Right: VectorInt): VectorInt; | Multiply all elements in Left with corresponding elements in Right. |
| 2 | class operator Multiply(const Left: VectorInt; const Right: TVecInt): VectorInt; | Multiply all elements in Left with corresponding elements in Right. |
| 3 | class operator Multiply(const Left: VectorInt; const Right: VectorInt): VectorInt; | Multiply all elements in Left with corresponding elements in Right. |
| 4 | class operator Multiply(const Left: VectorInt; const Right: Integer): VectorInt; | Multiply all elements in Left with Right. |
| 5 | class operator Multiply(const Left: Integer; const Right: VectorInt): VectorInt; | Multiply all elements in Right with Left. |
Overload 1: class operator Multiply(const Left: TVecInt; const Right: VectorInt): VectorInt;
Multiply all elements in Left with corresponding elements in Right.
Result: stored in self (calling object), returns self for chaining
Overload 2: class operator Multiply(const Left: VectorInt; const Right: TVecInt): VectorInt;
Multiply all elements in Left with corresponding elements in Right.
Result: stored in self (calling object), returns self for chaining
Overload 3: class operator Multiply(const Left: VectorInt; const Right: VectorInt): VectorInt;
Multiply all elements in Left with corresponding elements in Right.
Result: stored in self (calling object), returns self for chaining
Overload 4: class operator Multiply(const Left: VectorInt; const Right: Integer): VectorInt;
Multiply all elements in Left with Right.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | VectorInt | |
| 2 | Right | Integer |
Result: stored in self (calling object), returns self for chaining
Overload 5: class operator Multiply(const Left: Integer; const Right: VectorInt): VectorInt;
Multiply all elements in Right with Left.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | Integer | |
| 2 | Right | VectorInt |
Result: stored in self (calling object), returns self for chaining