AbslFormatFlush overloads
Declared in <absl/strings/cord.h>
Supports absl::Cord as a sink object for absl::Format().
void
AbslFormatFlush(
absl::Cord* cord,
std::string_view part);
» more...
Support absl::Format(&sink, format, args...).
void
AbslFormatFlush(
FormatSink* sink,
std::string_view v);
» more...
| Name | Description |
|---|---|
| cord | The Cord that receives the formatted output. |
| part | The formatted string data to append. |
| sink | The sink to write to. |
| v | The characters to append. |