Min


Return minimum of the arguments.

You can find more information in comments below.

template<class TYPE>
constexpr TYPE Min(const TYPE a, const TYPE b); // Return minimum of two values
template<class TYPE, class ... ARGS>
constexpr TYPE Min(const TYPE a, const TYPE b, const ARGS ... other); // Return minimum of three and more values
Namespace: ntl
Include: NTL/Core/Utils.h