Public Types | |
typedef CharT | char_type |
Public typedefs. | |
typedef basic_string< CharT > | string_type |
Public typedefs. | |
Public Member Functions | |
collate_byname (const char *s, size_t __refs=0) | |
int | compare (const CharT *__lo1, const CharT *__hi1, const CharT *__lo2, const CharT *__hi2) const |
Compare two strings. | |
string_type | transform (const CharT *__lo, const CharT *__hi) const |
Transform string to comparable form. | |
long | hash (const CharT *__lo, const CharT *__hi) const |
Return hash of a string. | |
int | M_compare (const CharT *, const CharT *) const |
size_t | M_transform (CharT *, const CharT *, size_t) const |
Static Public Attributes | |
static locale::id | id |
Numpunct facet id. | |
Protected Member Functions | |
virtual | ~collate_byname () |
virtual int | do_compare (const CharT *__lo1, const CharT *__hi1, const CharT *__lo2, const CharT *__hi2) const |
Compare two strings. | |
virtual string_type | do_transform (const CharT *__lo, const CharT *__hi) const |
Transform string to comparable form. | |
virtual long | do_hash (const CharT *__lo, const CharT *__hi) const |
Return hash of a string. | |
Static Protected Member Functions | |
static c_locale | S_get_c_locale () |
static const char * | S_get_c_name () |
Protected Attributes | |
c_locale | M_c_locale_collate |
Friends | |
class | locale::Impl |
Definition at line 2640 of file locale_facets.h.
|
Public typedefs.
Reimplemented from std::collate< CharT >. Definition at line 2645 of file locale_facets.h. |
|
Public typedefs.
Reimplemented from std::collate< CharT >. Definition at line 2646 of file locale_facets.h. |
|
Compare two strings. This function compares two strings and returns the result by calling collate::do_compare().
Definition at line 2523 of file locale_facets.h. References std::collate< CharT >::do_compare(). |
|
Compare two strings. This function is a hook for derived classes to change the value returned.
Definition at line 2285 of file locale_facets.tcc. Referenced by std::collate< CharT >::compare(). |
|
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.
Definition at line 2368 of file locale_facets.tcc. References __gnu_cxx::__val. Referenced by std::collate< CharT >::hash(). |
|
Transform string to comparable form. This function is a hook for derived classes to change the value returned.
Definition at line 2324 of file locale_facets.tcc. References std::basic_string< CharT, Traits, Alloc >::append(), std::basic_string< CharT, Traits, Alloc >::c_str(), std::basic_string< CharT, Traits, Alloc >::data(), std::basic_string< CharT, Traits, Alloc >::length(), and std::basic_string< CharT, Traits, Alloc >::push_back(). Referenced by std::collate< CharT >::transform(). |
|
Return hash of a string. This function computes and returns a hash on the input string. It does so by returning collate::do_hash().
Definition at line 2556 of file locale_facets.h. References std::collate< CharT >::do_hash(). |
|
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().
Definition at line 2542 of file locale_facets.h. References std::collate< CharT >::do_transform(). |
|
Numpunct facet id.
Definition at line 2482 of file locale_facets.h. |