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;

Formats an fbstring into the output context.

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

Return Value

  • An iterator past the end of the written output.

  • An iterator past the last written character.

Parameters

Name

Description

ew

The exception wrapper to format.

ctx

The formatting context to write to.

s

The fbstring to format.

Created with MrDocs