numeric_limits::tinyness_before
Testa se um tipo pode determinar que um valor é muito pequeno para representar como um valor normalizado antes de arredondamento.
static const bool tinyness_before = false;
Valor de retorno
true se o tipo pode detectar valores minúsculos antes de arredondamento; false se não for possível.
Comentários
Tipos que pode detectar o tinyness foi incluído como uma opção com representações de ponto flutuante de IEC 559 e sua implementação do pode afetar os resultados.
Exemplo
// numeric_limits_tinyness_before.cpp
// compile with: /EHsc
#include <iostream>
#include <limits>
using namespace std;
int main( )
{
cout << "Whether float types can detect tinyness before rounding: "
<< numeric_limits<float>::tinyness_before
<< endl;
cout << "Whether double types can detect tinyness before rounding: "
<< numeric_limits<double>::tinyness_before
<< endl;
cout << "Whether long int types can detect tinyness before rounding: "
<< numeric_limits<long int>::tinyness_before
<< endl;
cout << "Whether unsigned char types can detect tinyness before rounding: "
<< numeric_limits<unsigned char>::tinyness_before
<< endl;
}
Requisitos
limites <deCabeçalho: >
Namespace: std