folly::fmt_vformat_mangle_name

fmt_vformat_mangle_name overloads

Synopses

Declared in <folly/FmtUtility.h>

Returns a mangled copy of the named-arg name str.

std::string
fmt_vformat_mangle_name(std::string_view const str);
» more...

Appends the mangled form of the named-arg name str to out.

void
fmt_vformat_mangle_name(
    std::string& out,
    std::string_view const str);
» more...

Return Value

A mangled copy of the named-arg name.

Parameters

NameDescription
strThe named-arg name to mangle.
outThe string to append the mangled name to.