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