nn::math::Max Function

Syntax

template <typename T, typename U, typename S>
S Max(
     T a,
     U b
);

template <typename T>
T Max(
     T a,
     T b
);

template <typename T, typename U, typename R, typename S>
S Max(
     T a,
     U b,
     R c
);

template <typename T>
T Max(
     T a,
     T b,
     T c
);

List of Overloaded Member Functions

Max(T, U) Finds the maximum value.
Max(T, T) Finds the maximum value.
Max(T, U, R) Finds the maximum value.
Max(T, T, T) Finds the maximum value.

Description of Max(T, U)

Description of Max(T, T)

Description of Max(T, U, R)

Description of Max(T, T, T)


CONFIDENTIAL