libstdc++
|
#include <locale_facets_nonio.h>
Public Types | |
enum | { _S_minus , _S_zero , _S_end } |
typedef __moneypunct_cache< _CharT, _Intl > | __cache_type |
typedef _CharT | char_type |
enum | part { none , space , symbol , sign , value } |
typedef basic_string< _CharT > | string_type |
Public Member Functions | |
moneypunct_byname (const char *__s, size_t __refs=0) | |
moneypunct_byname (const string &__s, size_t __refs=0) | |
string_type | curr_symbol () const |
char_type | decimal_point () const |
int | frac_digits () const |
string | grouping () const |
string_type | negative_sign () const |
string_type | positive_sign () const |
char_type | thousands_sep () const |
pattern | pos_format () const |
pattern | neg_format () const |
Static Public Member Functions | |
static pattern | _S_construct_pattern (char __precedes, char __space, char __posn) throw () |
Static Public Attributes | |
static const char * | _S_atoms |
static const pattern | _S_default_pattern |
static locale::id | id |
static const bool | intl |
Protected Member Functions | |
void | _M_initialize_moneypunct (__c_locale __cloc=0, const char *__name=0) |
void | _M_initialize_moneypunct (__c_locale, const char *) |
void | _M_initialize_moneypunct (__c_locale, const char *) |
void | _M_initialize_moneypunct (__c_locale, const char *) |
void | _M_initialize_moneypunct (__c_locale, const char *) |
virtual string_type | do_curr_symbol () const |
virtual char_type | do_decimal_point () const |
virtual int | do_frac_digits () const |
virtual string | do_grouping () const |
virtual pattern | do_neg_format () const |
virtual string_type | do_negative_sign () const |
virtual pattern | do_pos_format () const |
virtual string_type | do_positive_sign () const |
virtual char_type | do_thousands_sep () const |
class moneypunct_byname [22.2.6.4].
Definition at line 1454 of file locale_facets_nonio.h.
|
inherited |
Definition at line 1073 of file locale_facets_nonio.h.
typedef _CharT std::moneypunct_byname< _CharT, _Intl >::char_type |
Definition at line 1457 of file locale_facets_nonio.h.
typedef basic_string<_CharT> std::moneypunct_byname< _CharT, _Intl >::string_type |
Definition at line 1458 of file locale_facets_nonio.h.
|
inherited |
Definition at line 976 of file locale_facets_nonio.h.
|
inherited |
Definition at line 971 of file locale_facets_nonio.h.
|
inlineexplicit |
Definition at line 1463 of file locale_facets_nonio.h.
|
inlineexplicit |
Definition at line 1478 of file locale_facets_nonio.h.
|
inlineprotectedvirtual |
Definition at line 1484 of file locale_facets_nonio.h.
|
inlineinherited |
Return currency symbol string.
This function returns a string_type to use as a currency symbol. It does so by returning returning moneypunct<char_type>::do_curr_symbol().
Definition at line 1191 of file locale_facets_nonio.h.
References do_curr_symbol().
|
inlineinherited |
Return decimal point character.
This function returns a char_type to use as a decimal point. It does so by returning returning moneypunct<char_type>::do_decimal_point().
Definition at line 1135 of file locale_facets_nonio.h.
References do_decimal_point().
|
inlineprotectedvirtualinherited |
Return currency symbol string.
This function returns a string_type to use as a currency symbol. This function is a hook for derived classes to change the value returned.
Definition at line 1337 of file locale_facets_nonio.h.
Referenced by curr_symbol().
|
inlineprotectedvirtualinherited |
Return decimal point character.
Returns a char_type to use as a decimal point. This function is a hook for derived classes to change the value returned.
Definition at line 1299 of file locale_facets_nonio.h.
Referenced by decimal_point().
|
inlineprotectedvirtualinherited |
Return number of digits in fraction.
This function returns the exact number of digits that make up the fractional part of a money amount. This function is a hook for derived classes to change the value returned.
Definition at line 1377 of file locale_facets_nonio.h.
Referenced by frac_digits().
|
inlineprotectedvirtualinherited |
Return grouping specification.
Returns a string representing groupings for the integer part of a number. This function is a hook for derived classes to change the value returned.
Definition at line 1324 of file locale_facets_nonio.h.
Referenced by grouping().
|
inlineprotectedvirtualinherited |
Return pattern for money values.
This function returns a pattern describing the formatting of a negative valued money amount. This function is a hook for derived classes to change the value returned.
Definition at line 1405 of file locale_facets_nonio.h.
Referenced by neg_format().
|
inlineprotectedvirtualinherited |
Return negative sign string.
This function returns a string_type to use as a sign for negative amounts. This function is a hook for derived classes to change the value returned.
Definition at line 1363 of file locale_facets_nonio.h.
Referenced by negative_sign().
|
inlineprotectedvirtualinherited |
Return pattern for money values.
This function returns a pattern describing the formatting of a positive valued money amount. This function is a hook for derived classes to change the value returned.
Definition at line 1391 of file locale_facets_nonio.h.
Referenced by pos_format().
|
inlineprotectedvirtualinherited |
Return positive sign string.
This function returns a string_type to use as a sign for positive amounts. This function is a hook for derived classes to change the value returned.
Definition at line 1350 of file locale_facets_nonio.h.
Referenced by positive_sign().
|
inlineprotectedvirtualinherited |
Return thousands separator character.
Returns a char_type to use as a thousands separator. This function is a hook for derived classes to change the value returned.
Definition at line 1311 of file locale_facets_nonio.h.
Referenced by thousands_sep().
|
inlineinherited |
Return number of digits in fraction.
This function returns the exact number of digits that make up the fractional part of a money amount. It does so by returning returning moneypunct<char_type>::do_frac_digits().
The fractional part of a money amount is optional. But if it is present, there must be frac_digits() digits.
Definition at line 1241 of file locale_facets_nonio.h.
References do_frac_digits().
|
inlineinherited |
Return grouping specification.
This function returns a string representing groupings for the integer part of an amount. Groupings indicate where thousands separators should be inserted.
Each char in the return string is interpret as an integer rather than a character. These numbers represent the number of digits in a group. The first char in the string represents the number of digits in the least significant group. If a char is negative, it indicates an unlimited number of digits for the group. If more chars from the string are required to group a number, the last char is used repeatedly.
For example, if the grouping() returns \003\002
and is applied to the number 123456789, this corresponds to 12,34,56,789. Note that if the string was 32
, this would put more than 50 digits into the least significant group if the character set is ASCII.
The string is returned by calling moneypunct<char_type>::do_grouping().
Definition at line 1178 of file locale_facets_nonio.h.
References do_grouping().
|
inlineinherited |
Return pattern for money values.
This function returns a pattern describing the formatting of a positive or negative valued money amount. It does so by returning returning moneypunct<char_type>::do_pos_format() or moneypunct<char_type>::do_neg_format().
The pattern has 4 fields describing the ordering of symbol, sign, value, and none or space. There must be one of each in the pattern. The none and space enums may not appear in the first field and space may not appear in the final field.
The parts of a money string must appear in the order indicated by the fields of the pattern. The symbol field indicates that the value of curr_symbol() may be present. The sign field indicates that the value of positive_sign() or negative_sign() must be present. The value field indicates that the absolute value of the money amount is present. none indicates 0 or more whitespace characters, except at the end, where it permits no whitespace. space indicates that 1 or more whitespace characters must be present.
For example, for the US locale and pos_format() pattern {symbol,sign,value,none}, curr_symbol() == '$' positive_sign() == '+', and value 10.01, and options set to force the symbol, the corresponding string is $+10.01
.
Definition at line 1281 of file locale_facets_nonio.h.
References do_neg_format().
|
inlineinherited |
Return negative sign string.
This function returns a string_type to use as a sign for negative amounts. It does so by returning returning moneypunct<char_type>::do_negative_sign().
If the return value contains more than one character, the first character appears in the position indicated by neg_format() and the remainder appear at the end of the formatted string.
Definition at line 1225 of file locale_facets_nonio.h.
References do_negative_sign().
|
inlineinherited |
Return pattern for money values.
This function returns a pattern describing the formatting of a positive or negative valued money amount. It does so by returning returning moneypunct<char_type>::do_pos_format() or moneypunct<char_type>::do_neg_format().
The pattern has 4 fields describing the ordering of symbol, sign, value, and none or space. There must be one of each in the pattern. The none and space enums may not appear in the first field and space may not appear in the final field.
The parts of a money string must appear in the order indicated by the fields of the pattern. The symbol field indicates that the value of curr_symbol() may be present. The sign field indicates that the value of positive_sign() or negative_sign() must be present. The value field indicates that the absolute value of the money amount is present. none indicates 0 or more whitespace characters, except at the end, where it permits no whitespace. space indicates that 1 or more whitespace characters must be present.
For example, for the US locale and pos_format() pattern {symbol,sign,value,none}, curr_symbol() == '$' positive_sign() == '+', and value 10.01, and options set to force the symbol, the corresponding string is $+10.01
.
Definition at line 1277 of file locale_facets_nonio.h.
References do_pos_format().
|
inlineinherited |
Return positive sign string.
This function returns a string_type to use as a sign for positive amounts. It does so by returning returning moneypunct<char_type>::do_positive_sign().
If the return value contains more than one character, the first character appears in the position indicated by pos_format() and the remainder appear at the end of the formatted string.
Definition at line 1208 of file locale_facets_nonio.h.
References do_positive_sign().
|
inlineinherited |
Return thousands separator character.
This function returns a char_type to use as a thousands separator. It does so by returning returning moneypunct<char_type>::do_thousands_sep().
Definition at line 1148 of file locale_facets_nonio.h.
References do_thousands_sep().
|
staticinherited |
Definition at line 985 of file locale_facets_nonio.h.
|
staticinherited |
Definition at line 974 of file locale_facets_nonio.h.
|
staticinherited |
Numpunct facet id.
Definition at line 1083 of file locale_facets_nonio.h.
|
static |
Definition at line 1460 of file locale_facets_nonio.h.