Standard C++ Library Reference ISO/IEC (VERSION3)
noskipws
ios_base& noskipws(ios_base& iosbase);
The manipulator effectively calls iosbase.unsetf(ios_base:: skipws), then returns
iosbase.
nounitbuf
ios_base& nounitbuf(ios_base& iosbase);
The manipulator effectively calls iosbase.unsetf(ios_base:: unitbuf), then returns
iosbase.
nouppercase
ios_base& nouppercase(ios_base& iosbase);
The manipulator effectively calls iosbase.unsetf(ios_base:: uppercase), then returns
iosbase.
oct
ios_base& oct(ios_base& iosbase);
The manipulator effectively calls iosbase.setf(ios_base:: oct, ios_base::
basefield), then returns iosbase.
right
ios_base& right(ios_base& iosbase);
The maiipulator effectively calls iosbase.setf(ios_base:: right, ios_base::
adjustfield), then returns iosbase.
scientific
ios_base& scientific(ios_base& iosbase);
The manipulator effectively calls iosbase.setf(ios_base:: scientific,
ios_base:: floatfield), then returns iosbase.