absl::AbslFormatFlush

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);
» more...

Support absl::Format(&sink, format, args...).

void
AbslFormatFlush(
    FormatSink* sink,
    std::string_view v);
» more...

Parameters

NameDescription
cordThe Cord that receives the formatted output.
partThe formatted string data to append.
sinkThe sink to write to.
vThe characters to append.