Namespaces
Variants
Views
Actions

std::char_traits::eq_int_type

From cppreference.com
< cpp | string | char traits
Revision as of 23:36, 24 February 2013 by 2hertz (Talk | contribs)
static bool eq_int_type( int_type c1, int_type c2 );
(until C++11)
static constexpr bool eq_int_type( int_type c1, int_type c2 ) noexcept;
(since C++11)

Checks whether two values of type int_type are equal.

Contents

Parameters

c1, c2 - values to compare

Return value

true if c1 is equal to c2, false otherwise.

Exceptions

noexcept specification:  
noexcept
  (since C++11)

Complexity

Constant.