Пространства имён
Варианты
Действия

std::char_traits::eq_int_type

Материал из cppreference.com

bool eq_int_type( int_type a, int_type b );
(до C++11)
constexpr bool eq_int_type( int_type a, int_type b );
(начиная с C++11)
Проверяет два значения типа int_type равны.
Original:
Checks whether two values of type int_type are equal.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Возвращаемое значение не определено, если оба a и b равны значение EOF.
Original:
Return value is unspecified if both of a and b are equal to eof value.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Содержание

[править] Параметры

a, b -
меньше значения для сравнения
Original:
values to compare
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[править] Возвращаемое значение

true если a равно b, false иначе.
Original:
true if a is equal to b, false otherwise.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[править] Исключения

noexcept-спецификация:  
noexcept
  (начиная с C++11)

[править] Сложность

Постоянное.
Original:
Constant.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.