[#absl-AbslUnparseFlag-07] = xref:absl.adoc[absl]::AbslUnparseFlag :relfileprefix: ../ :mrdocs: `AbslUnparseFlag` overloads == Synopses Declared in `<absl/flags/marshalling.h>` Unparses a Duration value into a command‐line string representation using the format specified by `absl::ParseDuration()`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- std::string xref:absl/AbslUnparseFlag-08.adoc[AbslUnparseFlag](xref:absl/Duration.adoc[Duration] d); ---- [.small]#xref:absl/AbslUnparseFlag-08.adoc[_» more..._]# Unparses an `absl::LogSeverity` flag value. See `base/log_severity.h` for the full documentation. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- std::string xref:absl/AbslUnparseFlag-09.adoc[AbslUnparseFlag](xref:absl/LogSeverity.adoc[absl::LogSeverity] severity); ---- [.small]#xref:absl/AbslUnparseFlag-09.adoc[_» more..._]# Unparses a Time value into a command‐line string representation using the format specified by `absl::ParseTime()`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- std::string xref:absl/AbslUnparseFlag-03.adoc[AbslUnparseFlag](xref:absl/Time.adoc[Time] t); ---- [.small]#xref:absl/AbslUnparseFlag-03.adoc[_» more..._]# == Return Value * The command‐line string representation of `d`. * The string representation of the flag value. * The command‐line string representation of `t`. == Parameters [cols="1,4"] |=== | Name| Description | *d* | The duration to unparse. | *severity* | The value to unparse. | *t* | The time to unparse. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#