Overload List
| # | Signature | Description |
|---|---|---|
| 1 | VectorInt op_Multiply(TVecInt Left, VectorInt Right) | Multiply all elements in Left with corresponding elements in Right. |
| 2 | VectorInt op_Multiply(VectorInt Left, TVecInt Right) | Multiply all elements in Left with corresponding elements in Right. |
| 3 | VectorInt op_Multiply(VectorInt Left, VectorInt Right) | Multiply all elements in Left with corresponding elements in Right. |
| 4 | VectorInt op_Multiply(VectorInt Left, Int32 Right) | Multiply all elements in Left with Right. |
| 5 | VectorInt op_Multiply(Int32 Left, VectorInt Right) | Multiply all elements in Right with Left. |
Overload 1: VectorInt op_Multiply(TVecInt Left, VectorInt Right)
Multiply all elements in Left with corresponding elements in Right.
Result: stored in self (calling object), returns self for chaining
Overload 2: VectorInt op_Multiply(VectorInt Left, TVecInt Right)
Multiply all elements in Left with corresponding elements in Right.
Result: stored in self (calling object), returns self for chaining
Overload 3: VectorInt op_Multiply(VectorInt Left, VectorInt Right)
Multiply all elements in Left with corresponding elements in Right.
Result: stored in self (calling object), returns self for chaining
Overload 4: VectorInt op_Multiply(VectorInt Left, Int32 Right)
Multiply 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_Multiply(Int32 Left, VectorInt Right)
Multiply all elements in Right with Left.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | Int32 | |
| 2 | Right | VectorInt |
Result: stored in self (calling object), returns self for chaining