std::numeric_limits<T>::lowest
From cppreference.com
< cpp | types | numeric limits
static constexpr T lowest() noexcept; |
(since C++11) | |
Returns the lowest finite value representable by the numeric type T
, that is, a finite value x such that there is no other finite value y where y < x. This is different from std::numeric_limits<T>::min() for floating-point types. Only meaningful for bounded types.
Contents |