Standard C++ Library Reference ISO/IEC (VERSION3)
showbase
ios_base& showbase(ios_base& iosbase);
The manipulator effectively calls iosbase.setf(ios_base:: showbase), then returns
iosbase.
showpoint
ios_base& showpoint(ios_base& iosbase);
The manipulator effectively calls iosbase.setf(ios_base:: showpoint), then returns
iosbase.
showpos
ios_base& showpos(ios_base& iosbase);
The manipulator effectively calls iosbase.setf(ios_base:: showpos), then returns
iosbase.
skipws
ios_base& skipws(ios_base& iosbase);
The manipulator effectively calls iosbase.setf(ios_base:: skipws), then returns
iosbase.
streamoff
typedef T1 streamoff;
The type is a signed integer type T1 that describes an object that can store a byte offset involved in
various stream positioning operations. Its representation has at least 32 value bits. It is not necessarily
large enough to represent an arbitrary byte position within a stream. The value streamoff(-1)
generally indicates an erroneous offset.
streampos
typedef fpos<mbstate_t> streampos;
The type is a synonym for fpos< mbstate_t>.