Return the minimum of the given values.
Declared in <folly/ConstexprMath.h>
template<
typename T,
typename... Ts>
constexpr
T
constexpr_min(
T a,
Ts... ts);
When two values are equivalent, the earlier argument is returned to make sorting stable.
The minimum value among the arguments.
| Name | Description |
|---|---|
| a | The first value to compare. |
| ts | The remaining values to compare. |