MatrixInt::operator+ Operator

Overload List

#SignatureDescription
1MatrixInt operator+(const int Left, const MatrixInt &Right);Add left to all elements in Right and return result.
2MatrixInt operator+(const MatrixInt &Left, const int Right);Add Right to all elements in Left and return result.
3MatrixInt operator+(TMtxInt *Left, const MatrixInt &Right);Add coresponding elements in Left and Right.
4MatrixInt operator+(const MatrixInt &Left, TMtxInt *Right);Add coresponding elements in Left and Right.
5MatrixInt operator+(const MatrixInt &Left, const MatrixInt &Right);Add coresponding elements in Left and Right.

Overload 1: MatrixInt operator+(const int Left, const MatrixInt &Right);

Add left to all elements in Right and return result.

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

Overload 2: MatrixInt operator+(const MatrixInt &Left, const int Right);

Add Right to all elements in Left and return result.

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

Overload 3: MatrixInt operator+(TMtxInt *Left, const MatrixInt &Right);

Add coresponding elements in Left and Right.

#NameTypeDescription
1LeftTMtxInt *
2Rightconst MatrixInt &
Declared in Dew::Math · Dew.Math/MtxExprInt.h · Cross-compiler

Overload 4: MatrixInt operator+(const MatrixInt &Left, TMtxInt *Right);

Add coresponding elements in Left and Right.

#NameTypeDescription
1Leftconst MatrixInt &
2RightTMtxInt *
Declared in Dew::Math · Dew.Math/MtxExprInt.h · Cross-compiler

Overload 5: MatrixInt operator+(const MatrixInt &Left, const MatrixInt &Right);

Add coresponding elements in Left and Right.

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