AbslFormatFlush overloads
Synopses
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);
Support absl::Format(&sink, format, args...).
void
AbslFormatFlush(
FormatSink* sink,
std::string_view v);
Parameters
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. |
Created with MrDocs