Overload List
| # | Signature | Description |
|---|---|---|
| 1 | void MaxMin(int &aMax, int &aMin); | Calculate minimum and maximum in one procedure call. |
| 2 | void MaxMin(int &aMax, int &aMin, int Index, int Len); | Calculate minimum and maximum in one procedure call. |
Overload 1: void MaxMin(int &aMax, int &aMin);
Calculate minimum and maximum in one procedure call.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | aMax | int & | Returns calling vector maximum value. |
| 2 | aMin | int & | Returns calling vector monimum value. |
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler
Overload 2: void MaxMin(int &aMax, int &aMin, int Index, int Len);
Calculate minimum and maximum in one procedure call.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | aMax | int & | Returns calling vector elements [Index..Index+Len-1] maximum value. |
| 2 | aMin | int & | Returns calling vector elements [Index..Index+Len-1] minimum value. |
| 3 | Index | int | The starting index at which to start the search. |
| 4 | Len | int | The number of elements to search starting from Index. |
Remarks:
An exception is raised if array borders are overrun/underrun.
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler