logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

__gnu_cxx::_Char_types.3cxx

Author

       Generated automatically by Doxygen for libstdc++ from the source code.

                                                    libstdc++             __gnu_cxx::_Char_types<_CharT>(3cxx)

Detailed Description

template<typename_CharT>
       struct __gnu_cxx::_Char_types< _CharT >"Mapping from character type to associated types.

       Note
           This is an implementation class for the generic version of char_traits. It defines int_type,
           off_type, pos_type, and state_type. By default these are unsigned long, streamoff, streampos, and
           mbstate_t. Users who need a different set of types, but who don't need to change the definitions of
           any function defined in char_traits, can specialize __gnu_cxx::_Char_types while leaving
           __gnu_cxx::char_traits alone.

Name

       __gnu_cxx::_Char_types< _CharT > - Mapping from character type to associated types.

Synopsis

       #include <char_traits.h>

   PublicTypes
       typedef unsigned long int_type
       typedef std::streamoffoff_type
       typedef std::streampospos_type
       typedef std::mbstate_t state_type

See Also