Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function IsEqual(const Vec: TMtxVecInt): Boolean; | Compares two objects. |
| └ indexed: function IsEqual(const Vec: TMtxVecInt; const VecIndex: Integer; const Index: Integer; const Len: Integer): Boolean; | ||
| 2 | function IsEqual(const Value: Integer): Boolean; | Compares Value with all calling object elements. |
| └ indexed: function IsEqual(const Value: Integer; const Index: Integer; const Len: Integer): Boolean; |
Overload 1: function IsEqual(const Vec: TMtxVecInt): Boolean;
Compares two objects.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Vec | TMtxVecInt |
Returns: Boolean - True, if they are equal.
Remarks:
Compares two objects and returns True, if they are equal.
The method compares VectorInt.Length and VectorInt.IntPrecision properties and coresponding values.
Indexed: function IsEqual(const Vec: TMtxVecInt; const VecIndex: Integer; const Index: Integer; const Len: Integer): Boolean;
Compares Vec elements [VecIndex]..[VecIndex+Len-1] with calling object elements [Index]..[Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Vec | TMtxVecInt | |
| 2 | VecIndex | Integer | |
| 3 | Index | Integer | start index |
| 4 | Len | Integer | element count |
Returns: Boolean
Overload 2: function IsEqual(const Value: Integer): Boolean;
Compares Value with all calling object elements.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | Integer |
Returns: Boolean
Indexed: function IsEqual(const Value: Integer; const Index: Integer; const Len: Integer): Boolean;
Compares Value with all calling object elements.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | Integer | |
| 2 | Index | Integer | start index |
| 3 | Len | Integer | element count |
Returns: Boolean