[#absl-AbslStringify-07] = xref:absl.adoc[absl]::AbslStringify :relfileprefix: ../ :mrdocs: Stringifies the `value` or the status of a `StatusOr<T>`. == Synopsis Declared in `<absl/status/statusor.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< typename Sink, typename T> requires absl::HasAbslStringify<T>::value void AbslStringify( Sink& sink, xref:absl/StatusOr.adoc[StatusOr<T>] const& status_or); ---- == Description As above, but supports `StrCat`, `StrFormat`, etc. Requires `T` has `AbslStringify`. Do not rely on the output format which may change without notice. == Parameters [cols="1,4"] |=== | Name| Description | *sink* | The stringify sink to write to. | *status_or* | The object to stringify. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#