fmt::formatter<folly::exception_wrapper>::format

format overloads

Synopses

Declared in <folly/ExceptionWrapper.h>

Formats the exception wrapper into the output context.

template<typename Context>
auto
format(
    folly::exception_wrapper const& ew,
    Context& ctx) const;
» more...

Formats an fbstring into the output context.

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

Return Value

  • An iterator past the end of the written output.
  • An iterator past the last written character.

Parameters

NameDescription
ewThe exception wrapper to format.
ctxThe formatting context to write to.
sThe fbstring to format.