Right shift operators
Declared in <bslstl_istringstream.h>
Integer arithmetic extractors
__istream_type&
operator>>(bool& __n);
» more...
__istream_type&
operator>>(double& __f);
» more...
Floating point arithmetic extractors
__istream_type&
operator>>(float& __f);
» more...
__istream_type&
operator>>(int& __n);
» more...
__istream_type&
operator>>(long& __n);
» more...
__istream_type&
operator>>(long double& __f);
» more...
__istream_type&
operator>>(long long& __n);
» more...
__istream_type&
operator>>(short& __n);
» more...
__istream_type&
operator>>(unsigned int& __n);
» more...
__istream_type&
operator>>(unsigned long& __n);
» more...
__istream_type&
operator>>(unsigned long long& __n);
» more...
__istream_type&
operator>>(unsigned short& __n);
» more...
Basic arithmetic extractors
__istream_type&
operator>>(void*& __p);
» more...
Extracting into another streambuf.
__istream_type&
operator>>(__streambuf_type* __sb);
» more...
__istream_type&
operator>>(__ios_type&(* __pf)(__ios_type&));
» more...
Interface for manipulators.
__istream_type&
operator>>(__istream_type&(* __pf)(__istream_type&));
» more...
__istream_type&
operator>>(ios_base&(* __pf)(ios_base&));
» more...
*this if successful
| Name | Description |
|---|---|
| __n | A variable of builtin integral type. |
| __f | A variable of builtin floating point type. |
| __p | A variable of pointer type. |
| __sb | A pointer to a streambuf |