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

std::collate_byname< _CharT > - class collate_byname [22.2.4.2].

Author

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

                                                    libstdc++                std::collate_byname<_CharT>(3cxx)

Detailed Description

template<typename_CharT>
       class std::collate_byname< _CharT >"class collate_byname [22.2.4.2].

Member Data Documentation

template<typename_CharT>locale::idstd::collate<_CharT>::id[static],[inherited]
       Numpunct facet id.

Member Function Documentation

template<typename_CharT>intstd::collate<_CharT>::compare(const_CharT*__lo1,const_CharT*__hi1,const_CharT*__lo2,const_CharT*__hi2)const[inline],[inherited]
       Compare two strings. This function compares two strings and returns the result by calling
       collate::do_compare().

       Parameters__lo1 Start of string 1.
           __hi1 End of string 1.
           __lo2 Start of string 2.
           __hi2 End of string 2.

       Returns
           1 if string1 > string2, -1 if string1 < string2, else 0.

   template<typename_CharT>intstd::collate<_CharT>::do_compare(const_CharT*__lo1,const_CharT*__hi1,const_CharT*__lo2,const_CharT*__hi2)const[protected],[virtual],[inherited]
       Compare two strings. This function is a hook for derived classes to change the value returned.

       Seealso
           compare().

       Parameters__lo1 Start of string 1.
           __hi1 End of string 1.
           __lo2 Start of string 2.
           __hi2 End of string 2.

       Returns
           1 if string1 > string2, -1 if string1 < string2, else 0.

   template<typename_CharT>longstd::collate<_CharT>::do_hash(const_CharT*__lo,const_CharT*__hi)const[protected],[virtual],[inherited]
       Return hash of a string. This function computes and returns a hash on the input string. This function is
       a hook for derived classes to change the value returned.

       Parameters__lo Start of string.
           __hi End of string.

       Returns
           Hash value.

   template<typename_CharT>collate<_CharT>::string_typestd::collate<_CharT>::do_transform(const_CharT*__lo,const_CharT*__hi)const[protected],[virtual],[inherited]
       Transform string to comparable form. This function is a hook for derived classes to change the value
       returned.

       Parameters__lo Start.
           __hi End.

       Returns
           transformed string.

   template<typename_CharT>longstd::collate<_CharT>::hash(const_CharT*__lo,const_CharT*__hi)const[inline],[inherited]
       Return hash of a string. This function computes and returns a hash on the input string. It does so by
       returning collate::do_hash().

       Parameters__lo Start of string.
           __hi End of string.

       Returns
           Hash value.

   template<typename_CharT>string_typestd::collate<_CharT>::transform(const_CharT*__lo,const_CharT*__hi)const[inline],[inherited]
       Transform string to comparable form. This function is a wrapper for strxfrm functionality. It takes the
       input string and returns a modified string that can be directly compared to other transformed strings. In
       the C locale, this function just returns a copy of the input string. In some other locales, it may
       replace two chars with one, change a char for another, etc. It does so by returning
       collate::do_transform().

       Parameters__lo Start of string.
           __hi End of string.

       Returns
           Transformed string_type.

Member Typedef Documentation

template<typename_CharT>typedef_CharTstd::collate_byname<_CharT>::char_type
       Public typedefs.

   template<typename_CharT>typedefbasic_string<_CharT>std::collate_byname<_CharT>::string_type
       Public typedefs.

Name

       std::collate_byname< _CharT > - class collate_byname [22.2.4.2].

Synopsis

       #include <locale>

       Inherits std::collate<_CharT>.

   PublicTypestypedef _CharT char_type
               Public typedefs.
           typedefbasic_string< _CharT > string_type
               Public typedefs.

   PublicMemberFunctionscollate_byname (const char *__s, size_t __refs=0)
       collate_byname (const string &__s, size_t __refs=0)
       int _M_compare (const _CharT *, const _CharT *) const  throw ()
       int _M_compare (const char *, const char *) const throw()
       int _M_compare (const wchar_t *, const wchar_t *) const throw()
       size_t _M_transform (_CharT *, const _CharT *, size_t) const  throw ()
       size_t _M_transform (char *, const char *, size_t) const throw()
       size_t _M_transform (wchar_t *, const wchar_t *, size_t) const throw()
       int compare (const _CharT *__lo1, const _CharT *__hi1, const _CharT *__lo2, const _CharT *__hi2) const
           Compare two strings.
       long hash (const _CharT *__lo, const _CharT *__hi) const
           Return hash of a string.
       string_typetransform (const _CharT *__lo, const _CharT *__hi) const
           Transform string to comparable form.

   StaticPublicAttributesstaticlocale::idid
           Numpunct facet id.

   ProtectedMemberFunctionsvirtual int do_compare (const _CharT *__lo1, const _CharT *__hi1, const _CharT *__lo2, const _CharT
           *__hi2) const
           Compare two strings.
       virtual long do_hash (const _CharT *__lo, const _CharT *__hi) const
           Return hash of a string.
       virtualstring_typedo_transform (const _CharT *__lo, const _CharT *__hi) const
           Transform string to comparable form.

   StaticProtectedMemberFunctionsstatic __c_locale _S_clone_c_locale (__c_locale &__cloc)  throw ()
       staticvoid_S_create_c_locale (__c_locale &__cloc, const char *__s, __c_locale __old=0)
       staticvoid_S_destroy_c_locale (__c_locale &__cloc)
       static __c_locale _S_get_c_locale ()
       static const char * _S_get_c_name ()  throw ()
       static __c_locale _S_lc_ctype_c_locale (__c_locale __cloc, const char *__s)

   ProtectedAttributes
       __c_locale _M_c_locale_collate

See Also