You are here: Symbol Reference > MtxExprInt Namespace > Classes > VectorInt Record > public > NotEqual Operator > VectorInt.NotEqual Operator (VectorInt, VectorInt)
MtxVec VCL
ContentsIndex
PreviousUpNext
VectorInt.NotEqual Operator (VectorInt, VectorInt)

Returns true, if Left and Right are not equal.

Pascal
class operator NotEqual(const Left: VectorInt; const Right: VectorInt);

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;
Copyright (c) 1999-2025 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!