nn::math::Min Function

Syntax

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

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

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

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

List of Overloaded Member Functions

Min(T, U) Finds the minimum value.
Min(T, T) Finds the minimum value.
Min(T, U, R) Finds the minimum value.
Min(T, T, T) Finds the minimum value.

Description of Min(T, U)

Description of Min(T, T)

Description of Min(T, U, R)

Description of Min(T, T, T)


CONFIDENTIAL