fmt::formatter<folly::fbstring>::format

Formats an fbstring into the output context.

Synopsis

Declared in <folly/FBString.h>

template<typename Context>
Context::iterator
format(
    folly::fbstring const& s,
    Context& ctx) const;

Return Value

An iterator past the last written character.

Parameters

NameDescription
sThe fbstring to format.
ctxThe formatting context to write to.