Overload List
| # | Signature | Description |
|---|---|---|
| 1 | Boolean op_Inequality(TMtxVecInt Left, VectorInt Right) | Returns true, if Left and Right do not have equal Length and Values. |
| 2 | Boolean op_Inequality(VectorInt Left, TMtxVecInt Right) | Returns true, if Left and Right do not have equal Length and Values. |
| 3 | Boolean op_Inequality(VectorInt Left, VectorInt Right) | Returns true, if Left and Right are not equal. |
| 4 | Boolean op_Inequality(VectorInt Left, Int32 Right) | Returns true, if any elements of Left are not equal to Right. |
| 5 | Boolean op_Inequality(Int32 Left, VectorInt Right) | Returns true, if any elements of Right are not equal to Left. |
Overload 1: Boolean op_Inequality(TMtxVecInt Left, VectorInt Right)
Returns true, if Left and Right do not have equal Length and Values.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | TMtxVecInt | source TVecInt or TMtxInt |
| 2 | Right | VectorInt |
Returns: Boolean
Overload 2: Boolean op_Inequality(VectorInt Left, TMtxVecInt Right)
Returns true, if Left and Right do not have equal Length and Values.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | VectorInt | |
| 2 | Right | TMtxVecInt | source TVecInt or TMtxInt |
Returns: Boolean
Overload 3: Boolean op_Inequality(VectorInt Left, VectorInt Right)
Returns true, if Left and Right are not equal.
Returns: Boolean
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
Overload 4: Boolean op_Inequality(VectorInt Left, Int32 Right)
Returns true, if any elements of Left are not equal to Right.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | VectorInt | |
| 2 | Right | Int32 |
Returns: Boolean
Overload 5: Boolean op_Inequality(Int32 Left, VectorInt Right)
Returns true, if any elements of Right are not equal to Left.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | Int32 | |
| 2 | Right | VectorInt |
Returns: Boolean