std::char_traits::eof
De cppreference.com
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.
Parámetros
(Ninguno)
Valor de retorno
Un valor no equivalente a cualquier valor válido de tipo char_type.
Excepciones
Complejidad
Constante.
Véase también
[estático] |
Comprueba si un carácter es el valor eof. (función miembro estática pública) |