Namespaces
Variants
Actions

std::numeric_limits<T>::lowest

From cppreference.com
 
 
Utilities library
General utilities
Relational operators (deprecated in C++20)
 
 
 
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