libstdc++
std::collate Class Reference
Inheritance diagram for std::collate:

List of all members.

Public Types

Public Member Functions

Static Public Attributes

Protected Member Functions

Static Protected Member Functions

Protected Attributes

Friends


Detailed Description

Facet for localized string comparison.

This facet encapsulates the code to compare strings in a localized manner.

The collate template uses protected virtual functions to provide the actual results. The public accessors forward the call to the virtual functions. These virtual functions are hooks for developers to implement the behavior they require from the collate facet.


Member Typedef Documentation

typedef _CharT std::collate::char_type

Public typedefs.

Reimplemented in std::collate_byname.

Definition at line 624 of file locale_classes.h.

Public typedefs.

Reimplemented in std::collate_byname.

Definition at line 625 of file locale_classes.h.


Constructor & Destructor Documentation

std::collate::collate ( size_t  __refs = 0) [inline, explicit]

Constructor performs initialization.

This is the constructor provided by the standard.

Parameters:
refsPassed to the base facet class.

Definition at line 645 of file locale_classes.h.

std::collate::collate ( __c_locale  __cloc,
size_t  __refs = 0 
) [inline, explicit]

Internal constructor. Not for general use.

This is a constructor for use by the library itself to set up new locales.

Parameters:
clocThe C locale.
refsPassed to the base facet class.

Definition at line 659 of file locale_classes.h.

virtual std::collate::~collate ( ) [inline, protected, virtual]

Destructor.

Definition at line 722 of file locale_classes.h.


Member Function Documentation

int std::collate::compare ( const _CharT *  __lo1,
const _CharT *  __hi1,
const _CharT *  __lo2,
const _CharT *  __hi2 
) const [inline]

Compare two strings.

This function compares two strings and returns the result by calling collate::do_compare().

Parameters:
lo1Start of string 1.
hi1End of string 1.
lo2Start of string 2.
hi2End of string 2.
Returns:
1 if string1 > string2, -1 if string1 < string2, else 0.

Definition at line 676 of file locale_classes.h.

int std::collate::do_compare ( const _CharT *  __lo1,
const _CharT *  __hi1,
const _CharT *  __lo2,
const _CharT *  __hi2 
) const [protected, virtual]

Compare two strings.

This function is a hook for derived classes to change the value returned.

See also:
compare().
Parameters:
lo1Start of string 1.
hi1End of string 1.
lo2Start of string 2.
hi2End of string 2.
Returns:
1 if string1 > string2, -1 if string1 < string2, else 0.

Definition at line 136 of file locale_classes.tcc.

References std::basic_string::c_str(), std::basic_string::data(), and std::basic_string::length().

long std::collate::do_hash ( const _CharT *  __lo,
const _CharT *  __hi 
) const [protected, virtual]

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:
loStart of string.
hiEnd of string.
Returns:
Hash value.

Definition at line 231 of file locale_classes.tcc.

collate< _CharT >::string_type std::collate::do_transform ( const _CharT *  __lo,
const _CharT *  __hi 
) const [protected, virtual]

Transform string to comparable form.

This function is a hook for derived classes to change the value returned.

Parameters:
lo1Start of string 1.
hi1End of string 1.
lo2Start of string 2.
hi2End of string 2.
Returns:
1 if string1 > string2, -1 if string1 < string2, else 0.

Definition at line 175 of file locale_classes.tcc.

References std::basic_string::c_str(), std::basic_string::data(), std::basic_string::length(), std::basic_string::append(), and std::basic_string::push_back().

long std::collate::hash ( const _CharT *  __lo,
const _CharT *  __hi 
) const [inline]

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:
loStart of string.
hiEnd of string.
Returns:
Hash value.

Definition at line 709 of file locale_classes.h.

string_type std::collate::transform ( const _CharT *  __lo,
const _CharT *  __hi 
) const [inline]

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:
loStart of string.
hiEnd of string.
Returns:
Transformed string_type.

Definition at line 695 of file locale_classes.h.

Referenced by std::regex_traits::transform().


Member Data Documentation

Numpunct facet id.

Definition at line 635 of file locale_classes.h.


The documentation for this class was generated from the following files: