Right shift operators

Synopses

Declared in <bslx_byteinstream.h>

Read a BDEX‐compliant value from the specified input stream.

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

Read a BDEX‐compliant value from the specified test input stream.

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

Read the specified value from the specified input stream.

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

Return Value

a reference to stream

Parameters

Name

Description

stream

input stream to read from

value

destination for the extracted value

Created with MrDocs