Overload List
| # | Signature | Description |
|---|---|---|
| 1 | VectorInt op_Division(TVecInt Left, VectorInt Right) | Divide all elements in Left with coresponding elements in Right. |
| 2 | VectorInt op_Division(VectorInt Left, TVecInt Right) | Divide all elements in Left with coresponding elements in Right. |
| 3 | VectorInt op_Division(VectorInt Left, VectorInt Right) | Divide all elements in Left with coresponding elements in Right. |
| 4 | VectorInt op_Division(VectorInt Left, Int32 Right) | Divide all elements in Left with Right. |
| 5 | VectorInt op_Division(Int32 Left, VectorInt Right) | Divide Left with all elements Right. |
Overload 1: VectorInt op_Division(TVecInt Left, VectorInt Right)
Divide all elements in Left with coresponding elements in Right.
Result: stored in self (calling object), returns self for chaining
Overload 2: VectorInt op_Division(VectorInt Left, TVecInt Right)
Divide all elements in Left with coresponding elements in Right.
Result: stored in self (calling object), returns self for chaining
Overload 3: VectorInt op_Division(VectorInt Left, VectorInt Right)
Divide all elements in Left with coresponding elements in Right.
Result: stored in self (calling object), returns self for chaining
Overload 4: VectorInt op_Division(VectorInt Left, Int32 Right)
Divide all elements in Left with Right.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | VectorInt | |
| 2 | Right | Int32 |
Result: stored in self (calling object), returns self for chaining
Overload 5: VectorInt op_Division(Int32 Left, VectorInt Right)
Divide Left with all elements Right.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | Int32 | |
| 2 | Right | VectorInt |
Result: stored in self (calling object), returns self for chaining