Right shift operators
Declared in <bslx_byteinstream.h>
Read a BDEX-compliant value from the specified input stream.
template<class TYPE>
ByteInStream&
operator>>(
ByteInStream& stream,
TYPE& value);
» more...
Read a BDEX-compliant value from the specified test input stream.
template<class TYPE>
TestInStream&
operator>>(
TestInStream& stream,
TYPE& value);
» more...
Read the specified value from the specified input stream.
template<
class STREAMBUF,
class TYPE>
GenericInStream<STREAMBUF>&
operator>>(
GenericInStream<STREAMBUF>& stream,
TYPE& value);
» more...
a reference to stream
| Name | Description |
|---|---|
| stream | input stream to read from |
| value | destination for the extracted value |