Overload List
| # | Signature | Description |
|---|---|---|
| 1 | int Max() const; | Maximum value. |
| 2 | int Max(const int Index, const int Len) const; | Calculate the maximum value from calling object elements [Index]..[Index+Len-1]. |
| 3 | int Max(int &aIndex) const; | Calculate the maximum value of all calling object elements. |
| 4 | int Max(int &aIndex, const int Index, const int Len) const; | Calculate the maximum value of calling object elements [Index..Index+Len-1]. |
Overload 1: int Max() const;
Maximum value.
Returns: The maximum value of all calling object elements. The result is an integer value.
See Also: VectorInt::Max
Declared in Dew::Math::VectorInt · Dew.Math/MtxExprInt.h · Cross-compiler
Overload 2: int Max(const int Index, const int Len) const;
Calculate the maximum value from calling object elements [Index]..[Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Index | const int | |
| 2 | Len | const int |
Remarks:
The result is an integer value. An exception is raised if array borders are overrun.
Declared in Dew::Math::VectorInt · Dew.Math/MtxExprInt.h · Cross-compiler
Overload 3: int Max(int &aIndex) const;
Calculate the maximum value of all calling object elements.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | aIndex | int & | Stores maximum value index. |
Returns: the maximum of all calling vector integer elements in-place.
See Also: VectorInt::Min
Declared in Dew::Math::VectorInt · Dew.Math/MtxExprInt.h · Cross-compiler
Overload 4: int Max(int &aIndex, const int Index, const int Len) const;
Calculate the maximum value of calling object elements [Index..Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | aIndex | int & | Returns maximum value index. |
| 2 | Index | const int | The starting index at which to start the search. |
| 3 | Len | const int | The number of elements to search starting from Index. |
Returns: the maximum of calling vector integer elements [Index..Index+Len-1].
Remarks:
An exception is raised if array borders are overrun/underrun.
Declared in Dew::Math::VectorInt · Dew.Math/MtxExprInt.h · Cross-compiler