Overload List
| # | Signature | Description |
|---|---|---|
| 1 | bool IsEqual(const int Value) const; | Compares Value with all calling object elements. |
| 2 | bool IsEqual(const int Value, const int Index, const int Len) const; | Compares Value with all calling object elements. |
| 3 | bool IsEqual(TMtxVecInt *Vec) const; | Compares two objects. |
| 4 | bool IsEqual(TMtxVecInt *Vec, const int VecIndex, const int Index, const int Len) const; | Compares Vec elements [VecIndex]..[VecIndex+Len-1] with calling object elements [Index]..[Index+Len-1]. |
Overload 1: bool IsEqual(const int Value) const;
Compares Value with all calling object elements.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | const int |
Declared in Dew::Math::MatrixInt · Dew.Math/MtxExprInt.h · Cross-compiler
Overload 2: bool IsEqual(const int Value, const int Index, const int Len) const;
Compares Value with all calling object elements.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | const int | |
| 2 | Index | const int | |
| 3 | Len | const int |
Declared in Dew::Math::MatrixInt · Dew.Math/MtxExprInt.h · Cross-compiler
Overload 3: bool IsEqual(TMtxVecInt *Vec) const;
Compares two objects.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Vec | TMtxVecInt * |
Returns: True, if they are equal.
Remarks:
Compares two objects and returns True, if they are equal.
The method compares MatrixInt::Length and MatrixInt::IntPrecision properties and coresponding values.
Declared in Dew::Math::MatrixInt · Dew.Math/MtxExprInt.h · Cross-compiler
Overload 4: bool IsEqual(TMtxVecInt *Vec, const int VecIndex, const int Index, const int Len) const;
Compares Vec elements [VecIndex]..[VecIndex+Len-1] with calling object elements [Index]..[Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Vec | TMtxVecInt * | |
| 2 | VecIndex | const int | |
| 3 | Index | const int | |
| 4 | Len | const int |
Declared in Dew::Math::MatrixInt · Dew.Math/MtxExprInt.h · Cross-compiler