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 std::max(). |
|
Character extractors.
Definition at line 1023 of file istream.tcc. References basic_streambuf::sbumpc(). |
|
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: MyClass mc; std::cin >> std::ws >> mc; Definition at line 1106 of file istream.tcc. |