Standard C++ Library Reference ISO/IEC (VERSION3)
fpos::operator==
bool operator==(const fpos& right) const;
The member function returns (streamoff)*this == (streamoff)right.
fpos::operator streamoff
operator streamoff() const;
The member function returns the stored offset member object, plus any additional offset stored as
part of the fpos_t member object.
fpos::state
St state() const;
void state(St state);
The first member function returns the value stored in the St member object. The second member
function stores state in the St member object.
hex
ios_base& hex(ios_base& iosbase);
The manipulator effectively calls iosbase.setf(ios_base:: hex, ios_base::
basefield), then returns iosbase.
internal
ios_base& internal(ios_base& iosbase);
The manipulator effectively calls iosbase.setf(ios_base:: internal, ios_base::
adjustfield), then returns iosbase.
ios
typedef basic_ios<char, char_traits<char> > ios;
The type is a synonym for template class basic_ios, specialized for elements of type char with
default character traits.