std::char_traits::to_char_type

From cppreference.com
static char_type to_char_type( int_type c );
(until C++11)
static constexpr char_type to_char_type( int_type c ) noexcept;
(since C++11)

Converts a value of int_type to char_type. If there are no equivalent value, the results are unspecified.

Contents

[edit] Parameters

c - value to convert

[edit] Return value

A value equivalent to c.

[edit] Exceptions

noexcept specification:  
noexcept
  (since C++11)

[edit] Complexity

Constant.