Espaços nominais
Variantes
Ações

std::type_index::operator==,!=,<,<=,>,>=

De cppreference.com

<metanoindex/>

 
 
Biblioteca de utilitários
Digite apoio (basic types, RTTI, type traits)
Gerenciamento de memória dinâmica
De tratamento de erros
Utilidades do programa
Variadic funções
Data e hora
Objetos de função
(C++11)
Os operadores relacionais
Original:
Relational operators
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
rel_ops::operator!=
rel_ops::operator>
rel_ops::operator<=
rel_ops::operator>=
Pares e tuplas
Original:
Pairs and tuples
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
Troque, avançar e avançar
Original:
Swap, forward and move
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
(C++11)
(C++11)
 
Apoio a tipos
Tipos básicos
Original:
Basic types
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Tipos fundamentais
Tipos inteiros de largura fixos (C++11)
Limites numéricos
Original:
Numeric limits
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
C numérico limita interface
Informações de tipo de tempo de execução
Original:
Runtime type information
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Características de tipo
Original:
Type traits
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Principais categorias de tipo
Original:
Primary type categories
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
Propriedades de tipo
Original:
Type properties
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
(C++11)
(C++11)
Operações apoiadas
Original:
Supported operations
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Relacionamentos e consultas de propriedade
Original:
Relationships and property queries
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
(C++11)
(C++11)
(C++11)
Tipo modificações
Original:
Type modifications
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)(C++11)(C++11)
Transformações tipo
Original:
Type transformations
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
(C++11)
(C++11)
Digite constantes traço
Original:
Type trait constants
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
 
std::type_index
Funções de membro
Original:
Member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
type_index::type_index
type_index::operator=
type_index::operator!=
type_index::operator<
type_index::operator<=
type_index::operator>
type_index::operator>=
type_index::hash_code
type_index::name
 
<tbody> </tbody>
bool operator==( const type_index& rhs ) const;
(desde C++11)
bool operator!=( const type_index& rhs ) const;
(desde C++11)
bool operator<( const type_index& rhs ) const;
(desde C++11)
bool operator<=( const type_index& rhs ) const;
(desde C++11)
bool operator>( const type_index& rhs ) const;
(desde C++11)
bool operator>=( const type_index& rhs ) const;
(desde C++11)
Compara os objetos std::type_info subjacentes.
Original:
Compares the underlying std::type_info objects.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

1-2)

Verifica se os objetos subjacentes std::type_info se referem ao mesmo tipo.
Original:
Checks whether the underlying std::type_info objects refer to the same type.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

3-6)

Compara os objetos std::type_info subjacentes, como definidos por uma ordenação definida pela implementação. A comparação é feita por type_info::before.
Original:
Compares the underlying std::type_info objects as defined by an implementation-defined ordering. The comparison is done by type_info::before.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Parâmetros

rhs -
outro objeto type_index para comparar
Original:
another type_index object to compare to
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Valor de retorno

1)

true se os objetos std::type_info subjacentes referem-se a mesmo tipo, false contrário
Original:
true if the underlying std::type_info objects refer to the same type, false otherwise
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

2)

true se os objetos std::type_info subjacentes não se referem ao mesmo tipo, false contrário
Original:
true if the underlying std::type_info objects refer not to the same type, false otherwise
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

3-6)

true se os tipos referidos pelos objetos std::type_info subjacentes são ordenados por ordem correspondente, caso contrário false.
Original:
true if the types referred by the underlying std::type_info objects are ordered by corresponding order, false otherwise.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Exceções

noexcept specification:  
<tbody> </tbody>
noexcept
  (desde C++11)