Write the BDEX-compliant value to the specified output stream.
Declared in <bslx_genericoutstream.h>
template<
class STREAMBUF,
class TYPE>
GenericOutStream<STREAMBUF>&
operator<<(
GenericOutStream<STREAMBUF>& stream,
TYPE const& value);
Write the specified value to the specified output 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.
a reference to stream
| Name | Description |
|---|---|
| stream | output stream to write to |
| value | value to externalize |