Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
basic_istream::ipfx
bool ipfx(bool noskip = false);
The member function prepares for formatted or unformatted input. If good() is true, the function:
- Calls
tie->flush()iftie()is not a null pointer. - Effectively calls
ws(*this)ifflags() &skipwsis nonzero.
If, after any such preparation, good() is false, the function calls setstate(failbit). In any case, the function returns good().
You should not call ipfx directly. It is called as needed by an object of class sentry.