Int32 CountInRange(Int32 LowValue, Int32 HighValue)
Returns number of values within the interval.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | LowValue | Int32 | |
| 2 | HighValue | Int32 |
Returns: Int32
Remarks:
Returns number of values which fullfill condition LowValue < Value[i] < HighValue.
Indexed: Int32 CountInRange(Int32 LowValue, Int32 HighValue, Int32 Index, Int32 Len)
Returns number of values within the interval.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | LowValue | Int32 | |
| 2 | HighValue | Int32 | |
| 3 | Index | Int32 | start index |
| 4 | Len | Int32 | 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]