Namespaces
Variants

std::numeric_limits<T>:: lowest

From cppreference.net
Utilities library
static constexpr T lowest ( ) noexcept ;
(desde C++11)

Devuelve el valor finito más bajo representable por el tipo numérico T , es decir, un valor finito x tal que no existe otro valor finito y donde y < x . Esto es diferente de std:: numeric_limits < T > :: min ( ) para tipos de punto flotante. Solo tiene sentido para tipos acotados.

Contenidos

Valor de retorno

T std:: numeric_limits < T > :: lowest ( )
/* no especializado */ T ( )
bool false
char CHAR_MIN
signed char SCHAR_MIN
unsigned char 0
wchar_t WCHAR_MIN
char8_t (desde C++20) 0
char16_t 0
char32_t 0
short SHRT_MIN
unsigned short 0
int INT_MIN
unsigned int 0
long LONG_MIN
unsigned long 0
long long LLONG_MIN
unsigned long long 0
float - FLT_MAX
double - DBL_MAX
long double - LDBL_MAX

Notas

Para cada tipo de punto flotante estándar de C++ T std:: numeric_limits < T > :: lowest ( ) == - std:: numeric_limits < T > :: max ( ) , pero esto no necesariamente tiene que ser el caso para cualquier especialización de terceros.

Ejemplo

Demuestra min() , max() , y lowest() para tipos de punto flotante:

#include <iostream>
#include <limits>
#include <string_view>
template<typename T>
void print_twice(std::string_view type, T value)
{
    std::cout << '\t' << type << ": "
              << std::defaultfloat << value << " or "
              << std::hexfloat << value << '\n';
}
int main()
{
    // min()
    std::cout << "std::numeric_limits<T>::min():\n";
    print_twice("float", std::numeric_limits<float>::min());
    print_twice("double", std::numeric_limits<double>::min());
    print_twice("long double", std::numeric_limits<long double>::min());
    // lowest()
    std::cout << "std::numeric_limits<T>::lowest():\n";
    print_twice("float", std::numeric_limits<float>::lowest());
    print_twice("double", std::numeric_limits<double>::lowest());
    print_twice("long double", std::numeric_limits<long double>::lowest());
    // max()
    std::cout << "std::numeric_limits<T>::max():\n";
    print_twice("float", std::numeric_limits<float>::max());
    print_twice("double", std::numeric_limits<double>::max());
    print_twice("long double", std::numeric_limits<long double>::max());
}

Salida:

std::numeric_limits<T>::min():
	float: 1.17549e-38 or 0x1p-126
	double: 2.22507e-308 or 0x1p-1022
	long double: 3.3621e-4932 or 0x8p-16385
std::numeric_limits<T>::lowest():
	float: -3.40282e+38 or -0x1.fffffep+127
	double: -1.79769e+308 or -0x1.fffffffffffffp+1023
	long double: -1.18973e+4932 or -0xf.fffffffffffffffp+16380
std::numeric_limits<T>::max():
	float: 3.40282e+38 or 0x1.fffffep+127
	double: 1.79769e+308 or 0x1.fffffffffffffp+1023
	long double: 1.18973e+4932 or 0xf.fffffffffffffffp+16380

Véase también

[static]
devuelve el valor finito más pequeño del tipo de punto no flotante dado, o el valor normal positivo más pequeño del tipo de punto flotante dado
(función miembro pública estática)
[static]
devuelve el valor subnormal positivo más pequeño del tipo de punto flotante dado
(función miembro pública estática)
[static]
devuelve el valor finito más grande del tipo dado
(función miembro pública estática)