carb_max
Defined in carb/Defines.h
-
template<class T>
constexpr const T &carb_max(const T &left, const T &right) noexcept(noexcept(left < right)) Picks the maximum of two values.
Same as
std::maxbut implemented without using themaxkeyword as Windows.h can sometimes\#defineit.- Parameters
left – The first value to compare.
right – The second value to compare.
- Returns
rightifleftis less thanright, otherwiseleft, even if the values are equal.