value::operator<<
Serialize value
to an output stream.
Synopsis
Defined in header <boost/json/value.hpp>.
std::ostream&
operator<<(
std::ostream& os,
value const& jv);
Description
This function serializes a value
as JSON into the output stream.
Complexity
Constant or linear in the size of jv
.
Exception Safety
Strong guarantee. Calls to memory_resource::allocate
may throw.
Return Value
Reference to os
.
Parameters
Name | Description |
---|---|
|
The output stream to serialize to. |
|
The value to serialize. |
Convenience header <boost/json.hpp>