carb_min
Defined in carb/Defines.h
- 
template<class T>
 constexpr const T &carb_min(const T &left, const T &right) noexcept(noexcept(left < right))
- Picks the minimum of two values. - Same as - std::minbut implemented without using the- minkeyword as Windows.h can sometimes- #defineit.- Parameters
- left – The first value to compare. 
- right – The second value to compare. 
 
- Returns
- leftif- leftis less than- right, otherwise- right, even if the values are equal.