std::char_traits::eof
De cppreference.com
< cpp | string | char traits
static int_type eof(); |
(hasta C++11) | |
static constexpr int_type eof() noexcept; |
(desde C++11) | |
Devuelve un valor no equivalente a cualquier valor válido de tipo char_type
.
Formalmente, devuelve un valor e tal que X::eq_int_type(e, X::to_int_type(c)) es false
para todos los valores c.
Contenido |
[editar] Parámetros
(Ninguno)
[editar] Valor de retorno
Un valor no equivalente a cualquier valor válido de tipo char_type
.
[editar] Excepciones
[editar] Complejidad
Constante.
[editar] Véase también
[estático] |
Comprueba si un carácter es el valor eof. (función miembro estática pública) |