Overload List
| # | Signature | Description |
|---|---|---|
| 1 | VectorInt operator-(const int Left, const VectorInt &Right); | Subtract all elements in Right from Left. |
| 2 | VectorInt operator-(const VectorInt &Left, const int Right); | Subtract Right from all elements in Left. |
| 3 | VectorInt operator-(const VectorInt &Left, TVecInt *Right); | Subtract coresponding elements in Right from Left. |
| 4 | VectorInt operator-(TVecInt *Left, const VectorInt &Right); | Subtract coresponding elements in Right from Left. |
| 5 | VectorInt operator-(const VectorInt &Left, const VectorInt &Right); | Subtract coresponding elements in Right from Left. |
| 6 | VectorInt operator-(const VectorInt &AValue); | Negates all values inside AValue. |
Overload 1: VectorInt operator-(const int Left, const VectorInt &Right);
Subtract all elements in Right from Left.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | const int | |
| 2 | Right | const VectorInt & |
Declared in Dew::Math · Dew.Math/MtxExprInt.h · Cross-compiler
Overload 2: VectorInt operator-(const VectorInt &Left, const int Right);
Subtract Right from all elements in Left.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | const VectorInt & | |
| 2 | Right | const int |
Declared in Dew::Math · Dew.Math/MtxExprInt.h · Cross-compiler
Overload 3: VectorInt operator-(const VectorInt &Left, TVecInt *Right);
Subtract coresponding elements in Right from Left.
Declared in Dew::Math · Dew.Math/MtxExprInt.h · Cross-compiler
Overload 4: VectorInt operator-(TVecInt *Left, const VectorInt &Right);
Subtract coresponding elements in Right from Left.
Declared in Dew::Math · Dew.Math/MtxExprInt.h · Cross-compiler
Overload 5: VectorInt operator-(const VectorInt &Left, const VectorInt &Right);
Subtract coresponding elements in Right from Left.
Declared in Dew::Math · Dew.Math/MtxExprInt.h · Cross-compiler
Overload 6: VectorInt operator-(const VectorInt &AValue);
Negates all values inside AValue.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AValue | const VectorInt & |
Declared in Dew::Math · Dew.Math/MtxExprInt.h · Cross-compiler