TVec::operator== Operator

Overload List

#SignatureDescription
1bool operator==(TVec *Left, const Vector &Right);Returns true, if Left and Right are of equal Length and Values.
2bool operator==(const Vector &Left, TVec *Right);Returns true, if Left and Right are of equal Length and Values.
3bool operator==(TVec *Left, const Matrix &Right);Returns true, if all elements of Left are equal to Right.
4bool operator==(const Matrix &Left, TVec *Right);Returns true, if all elements of Left are equal to Right.
5bool operator==(TMtxVec *Left, const Vector &Right);Returns true, if Left and Right are of equal Length and Values.
6bool operator==(const Vector &Left, TMtxVec *Right);Returns true, if Left and Right are of equal Length and Values.

Overload 1: bool operator==(TVec *Left, const Vector &Right);

Returns true, if Left and Right are of equal Length and Values.

#NameTypeDescription
1LeftTVec *
2Rightconst Vector &
Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler

Overload 2: bool operator==(const Vector &Left, TVec *Right);

Returns true, if Left and Right are of equal Length and Values.

#NameTypeDescription
1Leftconst Vector &
2RightTVec *
Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler

Overload 3: bool operator==(TVec *Left, const Matrix &Right);

Returns true, if all elements of Left are equal to Right.

#NameTypeDescription
1LeftTVec *
2Rightconst Matrix &
Remarks:

Size and Complex properties must also match.

Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler

Overload 4: bool operator==(const Matrix &Left, TVec *Right);

Returns true, if all elements of Left are equal to Right.

#NameTypeDescription
1Leftconst Matrix &
2RightTVec *
Remarks:

Size and Complex properties must also match.

Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler

Overload 5: bool operator==(TMtxVec *Left, const Vector &Right);

Returns true, if Left and Right are of equal Length and Values.

#NameTypeDescription
1LeftTMtxVec *
2Rightconst Vector &
Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler

Overload 6: bool operator==(const Vector &Left, TMtxVec *Right);

Returns true, if Left and Right are of equal Length and Values.

#NameTypeDescription
1Leftconst Vector &
2RightTMtxVec *
Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler