C++ Locale Library - moneypunct_byname



Description

It is a standard facet overrides moneypunct virtual members to implement its semantics for particular named locales.

Declaration

Following is the declaration for std::moneypunct_byname.

C++98

	
template <class charT, bool International = false> class numpunct_byname;

C++11

template <class charT, bool International = false> class numpunct_byname;

Parameters

  • charT − It is a character type.

  • International − The representation uses an international format then it is true. If false (the default value), the representation may use a non-international format (such as using the dollar.

Return Value

none

locale.htm
Advertisements