num_put::do_put


virtual protected member function
iter_type do_put (iter_type out, ios_base& str, char_type fill, bool val) const;
iter_type do_put (iter_type out, ios_base& str, char_type fill, long val) const;
iter_type do_put (iter_type out, ios_base& str, char_type fill, unsigned long val) const;
iter_type do_put (iter_type out, ios_base& str, char_type fill, double val) const;
iter_type do_put (iter_type out, ios_base& str, char_type fill, long double val) const;
iter_type do_put (iter_type out, ios_base& str, char_type fill, const void* val) const;

Put numerical value [virtual]

Virtual protected member function in charge of formatting numerical values into sequences of characters as described in public member function put (see numput::put for details).

Polymorphic derived classes can redefine the behavior of this function.

See also