Namespaces
Variants
Views
Actions

std::ios_base::width

From cppreference.com
< cpp | io | ios base
Revision as of 15:49, 4 December 2012 by Lichray (Talk | contribs)
streamsize width() const;
(1)
streamsize width( streamsize new_width );
(2)

Manages the minimum number of characters to generate on certain output conversions.

1) Returns the current field width.

2) Sets the field width to the given one.

Contents

Parameters

new_width - new field width setting

Return value

the field width before the call to the function

Example

See also

manages decimal precision of floating point operations
(public member function) [edit]