absl::Cord::Append

Append overloads

Synopses

Declared in <absl/strings/cord.h>

Appends buffer to this cord, unless buffer has a zero length in which case this method has no effect on this cord instance.

void
Append(CordBuffer buffer);
» more...

Appends string data to this Cord.

void
Append(std::string_view src);
» more...

Appends another Cord to this Cord.

void
Append(Cord const& src);
» more...

Appends another Cord to this Cord by moving from it.

void
Append(Cord&& src);
» more...

Appends string data to this Cord.

template<
    typename T,
    EnableIfString<T> = 0>
void
Append(T&& src);
» more...

Template Parameters

NameDescription
TThe string type being consumed.

Parameters

NameDescription
bufferThe buffer whose contents are appended.
srcThe string data to append.