std::numeric_limits::lowest (3) Linux Manual Page
std::numeric_limits<T>::lowest – std::numeric_limits<T>::lowest Synopsis 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. Return…
