VectorInt::operator- Operator

Overload List

#SignatureDescription
1VectorInt operator-(const int Left, const VectorInt &Right);Subtract all elements in Right from Left.
2VectorInt operator-(const VectorInt &Left, const int Right);Subtract Right from all elements in Left.
3VectorInt operator-(const VectorInt &Left, TVecInt *Right);Subtract coresponding elements in Right from Left.
4VectorInt operator-(TVecInt *Left, const VectorInt &Right);Subtract coresponding elements in Right from Left.
5VectorInt operator-(const VectorInt &Left, const VectorInt &Right);Subtract coresponding elements in Right from Left.
6VectorInt 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.

#NameTypeDescription
1Leftconst int
2Rightconst 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.

#NameTypeDescription
1Leftconst VectorInt &
2Rightconst 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.

#NameTypeDescription
1Leftconst VectorInt &
2RightTVecInt *
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.

#NameTypeDescription
1LeftTVecInt *
2Rightconst VectorInt &
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.

#NameTypeDescription
1Leftconst VectorInt &
2Rightconst VectorInt &
Declared in Dew::Math · Dew.Math/MtxExprInt.h · Cross-compiler

Overload 6: VectorInt operator-(const VectorInt &AValue);

Negates all values inside AValue.

#NameTypeDescription
1AValueconst VectorInt &
Declared in Dew::Math · Dew.Math/MtxExprInt.h · Cross-compiler