BloombergLP::bslx::operator>>

Right shift operators

Synopses

Declared in <bslx_byteinstream.h>

Read the specified value from the specified input stream following the requirements of the BDEX protocol (see the bslx package-level documentation), and return a reference to stream. The behavior is undefined unless TYPE is BDEX-compliant.

template<class TYPE>
ByteInStream&
operator>>(
    ByteInStream& stream,
    TYPE& value);
» more...

Read the specified value from the specified input stream following the requirements of the BDEX protocol (see the bslx package-level documentation), and return a reference to stream. The behavior is undefined unless TYPE is BDEX-compliant.

template<class TYPE>
TestInStream&
operator>>(
    TestInStream& stream,
    TYPE& value);
» more...

Read the specified value from the specified input stream following the requirements of the BDEX protocol (see the bslx package-level documentation), and return a reference to stream. The behavior is undefined unless TYPE is BDEX-compliant.

template<
    class STREAMBUF,
    class TYPE>
GenericInStream<STREAMBUF>&
operator>>(
    GenericInStream<STREAMBUF>& stream,
    TYPE& value);
» more...