|
| collate_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 |
|
long | hash (const _CharT *__lo, const _CharT *__hi) const |
|
string_type | transform (const _CharT *__lo, const _CharT *__hi) const |
|
template<typename _CharT>
class std::collate_byname< _CharT >
class collate_byname [22.2.4.2].
Definition at line 822 of file locale_classes.h.
template<typename _CharT >
int std::collate< _CharT >::do_compare |
( |
const _CharT * |
__lo1, |
|
|
const _CharT * |
__hi1, |
|
|
const _CharT * |
__lo2, |
|
|
const _CharT * |
__hi2 |
|
) |
| const |
|
protectedvirtualinherited |
Compare two strings.
This function is a hook for derived classes to change the value returned.
- See also
- 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.
Definition at line 160 of file locale_classes.tcc.
References std::basic_string< _CharT, _Traits, _Alloc >::c_str(), std::basic_string< _CharT, _Traits, _Alloc >::data(), and std::basic_string< _CharT, _Traits, _Alloc >::length().
template<typename _CharT >
|
protectedvirtualinherited |
Transform string to comparable form.
This function is a hook for derived classes to change the value returned.
- Parameters
-
- Returns
- transformed string.
Definition at line 199 of file locale_classes.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().
template<typename _CharT >
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.
Definition at line 725 of file locale_classes.h.