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.
Skips white space in the stream.
template class<Elem, Tr>
basic_istream<Elem, Tr>& ws(
basic_istream<Elem, Tr>& _Istr
);
Parameters
- _Istr
A stream.
Return Value
The stream.
Remarks
The manipulator extracts and discards any elements ch for which use_facet< ctype<Elem> >(getloc). is(ctype<Elem>::space, ch) is true.
The function calls setstate(eofbit) if it encounters end of file while extracting elements. It returns _Istr.
Example
See operator>> for an example of using ws.
Requirements
Header: <istream>
Namespace: std