docs/mkdocs/docs/api/operator_ltlt.md
std::ostream& operator<<(std::ostream& o, const basic_json& j); // (1)
std::ostream& operator<<(std::ostream& o, const json_pointer& ptr); // (2)
j to the output stream o. The JSON value will be serialized using the
dump member function.
width of the output stream o. For
instance, using the manipulator std::setw(4) on o sets the indentation level to 4 and the serialization
result is the same as calling dump(4).fill of the output stream o.
For instance, the manipulator std::setfill('\\t') sets indentation to use a tab character rather than the
default space character.ptr to the output stream o. The string representation is
obtained using the to_string member function.o (in, out)
: stream to write to
j (in)
: JSON value to serialize
ptr (in)
: JSON pointer to write
the stream o
type_error.316 if a string stored inside the JSON
value is not UTF-8 encoded. Note that unlike the dump member functions, no error_handler
can be set.Linear.
!!! warning "Deprecation"
Function `#!cpp std::ostream& operator<<(std::ostream& o, const basic_json& j)` replaces function
`#!cpp std::ostream& operator>>(const basic_json& j, std::ostream& o)` which has been deprecated in version 3.0.0.
It will be removed in version 4.0.0. Please replace calls like `#!cpp j >> o;` with `#!cpp o << j;`.
??? example "Example: (1) serialize JSON value to stream"
The example below shows the serialization with different parameters to `width` to adjust the indentation level.
```cpp
--8<-- "examples/operator_ltlt__basic_json.cpp"
```
Output:
```json
--8<-- "examples/operator_ltlt__basic_json.output"
```
??? example "Example: (2) write JSON pointer to stream"
The example below shows how to write a JSON pointer to a stream.
```cpp
--8<-- "examples/operator_ltlt__json_pointer.cpp"
```
Output:
```json
--8<-- "examples/operator_ltlt__json_pointer.output"
```
#!cpp std::ostream& operator>>(const basic_json& j, std::ostream& o) in version 3.0.0.