Definition in file istream.tcc.
Go to the source code of this file.
|
Character string extractors.
n characters and stores them into the array starting at s. n is defined as:
Characters are extracted and stored until one of the following happens:
If no characters are extracted, sets failbit. Definition at line 1050 of file istream.tcc. References ios_base::badbit, ios_base::eofbit, ios_base::failbit, ios_base::goodbit, and std::max(). |
|
Character extractors.
Definition at line 1023 of file istream.tcc. References basic_ios::_M_setstate(), ios_base::badbit, ios_base::eofbit, ios_base::failbit, ios_base::goodbit, basic_ios::rdbuf(), and basic_ios::setstate(). |
|
Quick and easy way to eat whitespace.
This manipulator extracts whitespace characters, stopping when the next character is non-whitespace, or when the input sequence is empty. If the sequence is empty, The current locale is used to distinguish whitespace characters. Example: will skip leading whitespace before calling operator>> on cin and your object. Note that the same effect can be achieved by creating a std::basic_istream::sentry inside your definition of operator>>.Definition at line 1106 of file istream.tcc. References ios_base::eofbit. |