Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function IsEqual(Vec: TMtxVecInt): Boolean; | Compares all Vec elements with calling object elements and checks also Length and IntPrecision properties, if they match. |
| └ indexed: function IsEqual(Vec: TMtxVecInt; VecIndex: Integer; Index: Integer; Len: Integer): Boolean; | ||
| 2 | function IsEqual(Value: Integer): Boolean; | Compares Value with all calling object elements. |
| └ indexed: function IsEqual(Value: Integer; Index: Integer; Len: Integer): Boolean; |
Overload 1: function IsEqual(Vec: TMtxVecInt): Boolean;
Compares all Vec elements with calling object elements and checks also Length and IntPrecision properties, if they match.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Vec | TMtxVecInt | source TVecInt or TMtxInt |
Returns: Boolean
Indexed: function IsEqual(Vec: TMtxVecInt; VecIndex: Integer; Index: Integer; Len: Integer): Boolean;
Compares Vec elements [VecIndex]..[VecIndex+Len-1] with calling object elements [Index]..[Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Vec | TMtxVecInt | source TVecInt or TMtxInt |
| 2 | VecIndex | Integer | |
| 3 | Index | Integer | start index |
| 4 | Len | Integer | element count |
Returns: Boolean
Overload 2: function IsEqual(Value: Integer): Boolean;
Compares Value with all calling object elements.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | Integer |
Returns: Boolean
Indexed: function IsEqual(Value: Integer; Index: Integer; 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