<istream>
Defines the template class basic_istream, which mediates extractions for the iostreams, and the template class basic_iostream, which mediates both insertions and extractions. The header also defines a related manipulator. This header file is typically included for you by another iostreams header; you rarely have to include it directly.
#include <istream>
Typedefs
A type basic_iostream specialized on char. |
|
A type basic_istream specialized on char. |
|
A type basic_iostream specialized on wchar. |
|
A type basic_istream specialized on wchar. |
Manipulators
Skips white space in the stream. |
|
Exchanges two stream objects. |
Operators
Extracts characters and strings from the stream. |
Classes
A stream class that can do both input and output. |
|
The template class describes an object that controls extraction of elements and encoded objects from a stream buffer with elements of type Elem, also known as char_type, whose character traits are determined by the class Tr, also known as traits_type. |
See Also
Reference
Thread Safety in the Standard C++ Library