numeric_limits::is_modulo
Testa se type tem uma representação de módulo.
static const bool is_modulo = false;
Valor de retorno
true se o tipo tem uma representação de módulo; false caso contrário.
Comentários
Uma representação de módulo é uma representação em que todos os resultados sejam módulo reduzido algum valor. Todos os tipos predefinidos de número inteiro sem sinal têm uma representação de módulo.
Exemplo
// numeric_limits_is_modulo.cpp
// compile with: /EHsc
#include <iostream>
#include <limits>
using namespace std;
int main( )
{
cout << "Whether float objects have a modulo representation: "
<< numeric_limits<float>::is_modulo
<< endl;
cout << "Whether double objects have a modulo representation: "
<< numeric_limits<double>::is_modulo
<< endl;
cout << "Whether signed char objects have a modulo representation: "
<< numeric_limits<signed char>::is_modulo
<< endl;
cout << "Whether unsigned char objects have a modulo representation: "
<< numeric_limits<unsigned char>::is_modulo
<< endl;
}
Requisitos
limites <deCabeçalho: >
Namespace: std