[#absl-operator_lshift-0ca] = xref:absl.adoc[absl]::operator<< :relfileprefix: ../ :mrdocs: Prints the `value` or the status in brackets to `os`. == Synopsis Declared in `<absl/status/statusor.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<typename T> requires absl::HasOstreamOperator<T>::value std::ostream& operator<<( std::ostream& os, xref:absl/StatusOr.adoc[StatusOr<T>] const& status_or); ---- == Description Requires `T` supports `operator<<`. Do not rely on the output format which may change without notice. == Return Value A reference to `os`. == Parameters [cols="1,4"] |=== | Name| Description | *os* | The output stream to write to. | *status_or* | The object to print. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#