VectorInt::operator!= Operator

Overload List

#SignatureDescription
1bool operator!=(const VectorInt &Left, const VectorInt &Right);Returns true, if Left and Right are not equal.
2bool operator!=(const VectorInt &Left, const int Right);Returns true, if any elements of Left are not equal to Right.
3bool operator!=(const int Left, const VectorInt &Right);Returns true, if any elements of Right are not equal to Left.
4bool operator!=(TMtxVecInt *Left, const VectorInt &Right);Returns true, if Left and Right do not have equal Length and Values.
5bool operator!=(TVecInt *Left, const VectorInt &Right);Returns true, if Left and Right do not have equal Length and Values.
6bool operator!=(const VectorInt &Left, TMtxVecInt *Right);Returns true, if Left and Right do not have equal Length and Values.
7bool operator!=(const VectorInt &Left, TVecInt *Right);Returns true, if Left and Right do not have equal Length and Values.
8bool operator!=(const VectorInt &Left, const MatrixInt &Right);Returns true, if Left and Right do not have equal Length and Values.

Overload 1: bool operator!=(const VectorInt &Left, const VectorInt &Right);

Returns true, if Left and Right are not equal.

#NameTypeDescription
1Leftconst VectorInt &
2Rightconst VectorInt &
Remarks:

Returns true, if Left and Right do not have equal Length and Values.

var a,b: VectorInt;
begin
    a := VectorInt(TIntegerArray.Create(1,1,1,1,1));
    if a <> b then ERaise('a and b are not equal!');

    if a <> 1 then ERaise('a does not equals 1!');   //compare to integer value
end;
See Also: TMtxVecInt::IsEqual
Declared in Dew::Math · Dew.Math/MtxExprInt.h · Cross-compiler

Overload 2: bool operator!=(const VectorInt &Left, const int Right);

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

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

Overload 3: bool operator!=(const int Left, const VectorInt &Right);

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

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

Overload 4: bool operator!=(TMtxVecInt *Left, const VectorInt &Right);

Returns true, if Left and Right do not have equal Length and Values.

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

Overload 5: bool operator!=(TVecInt *Left, const VectorInt &Right);

Returns true, if Left and Right do not have equal Length and Values.

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

Overload 6: bool operator!=(const VectorInt &Left, TMtxVecInt *Right);

Returns true, if Left and Right do not have equal Length and Values.

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

Overload 7: bool operator!=(const VectorInt &Left, TVecInt *Right);

Returns true, if Left and Right do not have equal Length and Values.

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

Overload 8: bool operator!=(const VectorInt &Left, const MatrixInt &Right);

Returns true, if Left and Right do not have equal Length and Values.

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