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