Return maximum of the arguments.
You can find more information in comments below.
template<class TYPE>
constexpr TYPE Max(const TYPE a, const TYPE b); // Return maximum of two values
template<class TYPE, class ... ARGS>
constexpr TYPE Max(const TYPE a, const TYPE b, const ARGS ... other); // Return maximum of three and more values
Namespace: | ntl |
Include: | NTL/Core/Utils.h |