std::char_traits<CharT>::not_eof
static int_type not_eof( int_type e ); | (until C++11) | |
static constexpr int_type not_eof( int_type e ) noexcept; | (since C++11) |
Checks whether e
is not equivalent to eof value.
Formally.
- if
X::eq_int_type(e, X::eof())
isfalse
, returnse
- otherwise, returns a value
f
such thatX::eq_int_type(f, X::eof())
isfalse
Parameters
e | - | value to analyze |
Return value
e
if e
and eof value are not equivalent, returns some other non-eof value otherwise.
Complexity
Constant.
See also
[static] | returns an eof value (public static member function) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/string/char_traits/not_eof