std::char_traits<char>::eq_int_type, std::char_traits<wchar_t>::eq_int_type, std::char_traits<char8_t>::eq_int_type, std::char_traits<char16_t>::eq_int_type, std::char_traits<char32_t>::eq_int_type

来自cppreference.com
< cpp‎ | string‎ | char traits
static bool eq_int_type( int_type c1, int_type c2 );
(C++11 前)
static constexpr bool eq_int_type( int_type c1, int_type c2 ) noexcept;
(C++11 起)

检查两个 int_type 的值是否相等。

对字符特性的关于 X::eq_int_type 的通用要求参考字符特性 (CharTraits)

参数

c1, c2 - 要比较的值

返回值

c1 等于 c2 时返回 true,否则返回 false

复杂度

常数。