C++ Locale Library - money_put
Description
It is a standard facet parses sequences of characters to read monetary expressions and stores it into numerical values or strings of digits.
Declaration
Following is the declaration for std::money_get.
C++98
template <class charT, class InputIterator = istreambuf_iterator<charT> > class money_get;
C++11
template <class charT, class InputIterator = istreambuf_iterator<charT> > class money_get;
Parameters
charT − It is a character type.
InputIterator − It is an input iterator type.
Return Value
none
locale.htm
Advertisements