Instantiated member variants

not_eof

Template: std::char_traits<T>

Specializations:
  • char
  • wchar_t
  • char8_t
  • char16_t
  • char32_t

Given e, produces a suitable value that is not equivalent to eof.

# Declarations

static int_type not_eof( int_type e );

(constexpr since C++11)(noexcept since C++11)

# Parameters

# Return value

e if e and eof value are not equivalent, or some other non-eof value otherwise.

# See also