[#nlohmann-operator_lshift-05] = xref:nlohmann.adoc[nlohmann]::operator<< :relfileprefix: ../ :mrdocs: Left shift operators == Synopses Declared in `<nlohmann/json.hpp>` deserialize from stream [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[deprecated]] std::istream& xref:nlohmann/operator_lshift-01.adoc[operator<<]( xref:nlohmann/basic_json-0c.adoc[basic_json]& j, std::istream& i); ---- [.small]#xref:nlohmann/operator_lshift-01.adoc[_» more..._]# serialize to stream [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- std::ostream& xref:nlohmann/operator_lshift-0e.adoc[operator<<]( std::ostream& o, xref:nlohmann/basic_json-0c.adoc[basic_json] const& j); ---- [.small]#xref:nlohmann/operator_lshift-0e.adoc[_» more..._]# write string representation of the JSON pointer to stream [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- std::ostream& operator<<( std::ostream& o, xref:nlohmann/json_pointer.adoc[json_pointer] const& ptr); ---- [.small]#[_» more..._]# deserialize from stream [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[deprecated]] std::istream& xref:nlohmann/operator_lshift-020.adoc[operator<<]( xref:nlohmann/basic_json-0c.adoc[basic_json<>]& j, std::istream& i); ---- [.small]#xref:nlohmann/operator_lshift-020.adoc[_» more..._]# serialize to stream [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- std::ostream& xref:nlohmann/operator_lshift-022.adoc[operator<<]( std::ostream& o, xref:nlohmann/basic_json-0c.adoc[basic_json<>] const& j); ---- [.small]#xref:nlohmann/operator_lshift-022.adoc[_» more..._]# == Return Value * the stream _i_ * the stream _o_ == Parameters [cols="1,4"] |=== | Name| Description | *j* | JSON value to deserialize into | *i* | stream to deserialize from | *o* | stream to serialize to |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#