TMtxInt::CountInRange Method

Overload List

#SignatureDescription
1int CountInRange(const int LowValue, const int HighValue);Returns number of values within the interval.
2int 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.

#NameTypeDescription
1LowValueconst int
2HighValueconst 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.

#NameTypeDescription
1LowValueconst int
2HighValueconst int
3Indexconst int
4Lenint
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