Standard C++ Library Reference ISO/IEC (VERSION3)
If base is any other value, then mask is ios_base::fmtflags(0)●
setfill
template<class Elem>
T4 setfill(Elem ch);
The template manipulator returns an object that, when extracted from or inserted into the stream
str, calls str.fill(ch), then returns str. The type Elem must be the same as the
element type for the stream str.
setiosflags
T2 setiosflags(ios_base::fmtflags mask);
The manipulator returns an object that, when extracted from or inserted into the stream str,
calls str.setf(mask), then returns str.
setprecision
T5 setprecision(streamsize prec);
The manipulator returns an object that, when extracted from or inserted into the stream str,
calls str.precision(prec), then returns str.
setw
T6 setw(streamsize wide);
The manipulator returns an object that, when extracted from or inserted into the stream str,
calls str.width(wide), then returns str.
See also the Table of Contents and the Index.
Copyright © 1992-2001 by P.J. Plauger. All rights reserved.