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().
std::string
AbslUnparseFlag(Duration d);
Unparses an absl::LogSeverity flag value. See base/log_severity.h for the full documentation.
std::string
AbslUnparseFlag(absl::LogSeverity severity);
Unparses a Time value into a command‐line string representation using the format specified by absl::ParseTime().
std::string
AbslUnparseFlag(Time t);
Return Value
-
The command‐line string representation of
d. -
The string representation of the flag value.
-
The command‐line string representation of
t.
Parameters
Name |
Description |
d |
The duration to unparse. |
severity |
The value to unparse. |
t |
The time to unparse. |
Created with MrDocs