numeric_limits::is_modulo
Teste se tipo tem uma representação de modulo.
static const bool is_modulo = false;
Valor de retorno
true se o tipo tem uma representação; de modulo se não false .
Comentários
Uma representação de modulo é uma representação onde todos os resultados sejam modulo reduzido qualquer valor.Todos os tipos predefinidos de número inteiro sem sinal têm uma representação de modulo.
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
Cabeçalho: <limits>
namespace: STD