numeric_limits::tinyness_before
Testa se um tipo pode determinar que um valor é muito pequeno representar como um valor normalizado antes de arredondamento.
static const bool tinyness_before = false;
Valor de retorno
true se o tipo pode detectar valores mínimos antes de arredondamento; false se não pode.
Comentários
Tipos que podem detectar o tinyness foi incluído como uma opção com representações de ponto flutuante de IEC 559 e sua implementação pode afetar alguns 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
Cabeçalho: <limits>
namespace: STD