template <typename T, typename U, typename R, typename S>
S Max(
T a,
U b,
R c
);
| Name | Description |
|---|---|
| T | Type representing a numeric value |
| U | Type representing a numeric value |
| R | Type representing a numeric value |
| S | Return Value Type |
| Name | Description | |
|---|---|---|
| in | a | Value to compare with other arguments |
| in | b | Value to compare with other arguments |
| in | c | Value to compare with other arguments |
Finds the maximum value.
CONFIDENTIAL