public static member function
<string>
static bool eq_int_type (const int_type& x, const int_type& y);
static constexpr bool eq_int_type (int_type x, int_type y) noexcept;
比较 int_type 值
返回x 和 y 是否被认为是相等的。
如果 x 和 y 都表示有效的字符,则该函数返回与 成员 eq 对它们的char_type转换相同的结果。
此外,如果 x 和 y 都是 eof() 的副本,则该函数返回true。如果只有其中一个是 eof() 的副本,则该函数返回false.
在所有其他情况下,返回的值是不确定的。
参数
x, y
要比较的值。
成员类型int_type是一个整数类型,可以表示 eof() 或任何有效的字符值。