function CountInRange(const LowValue: Integer; const HighValue: Integer): Integer;
Returns number of values within the interval.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | LowValue | Integer | |
| 2 | HighValue | Integer |
Returns: Int32
Remarks:
Returns number of values which fullfill condition LowValue < Value[i] < HighValue.
Indexed: function CountInRange(const LowValue: Integer; const HighValue: Integer; const Index: Integer; Len: Integer): Integer;
Returns number of values within the interval.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | LowValue | Integer | |
| 2 | HighValue | Integer | |
| 3 | Index | Integer | start index |
| 4 | Len | Integer | element count |
Returns: Int32
Remarks:
Returns number of values which fullfill condition LowValue < Value[i] < HighValue, for i traversing the range [Index]..[Index+Len-1]