Overload List
| # | Signature | Description |
|---|---|---|
| 1 | int CountInRange(const int LowValue, const int HighValue); | Returns number of values within the interval. |
| 2 | int CountInRange(const int LowValue, const int HighValue, const int Index, int Len); | Returns number of values within the interval. |
Overload 1: int CountInRange(const int LowValue, const int HighValue);
Returns number of values within the interval.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | LowValue | const int | |
| 2 | HighValue | const int |
Remarks:
Returns number of values which fullfill condition LowValue < Value[i] < HighValue.
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler
Overload 2: int CountInRange(const int LowValue, const int HighValue, const int Index, int Len);
Returns number of values within the interval.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | LowValue | const int | |
| 2 | HighValue | const int | |
| 3 | Index | const int | |
| 4 | Len | int |
Remarks:
Returns number of values which fullfill condition LowValue < Value[i] < HighValue, for i traversing the range [Index]..[Index+Len-1]
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler