CARB_MIN
Defined in carb/Defines.h
-
CARB_MIN(a, b)
A macro that returns the least of two values.
Warning
This macro will evaluate parameters more than once! Consider using carb_min() or
std::min
.- Parameters
a – The first value.
b – The second value.
- Returns
The least of
a
orb
. If the values are equalb
will be returned.