[#fmt-formatter-0ce-format-0c] = xref:fmt.adoc[fmt]::xref:fmt/formatter-0ce.adoc[formatter<folly::exception_wrapper>]::format :relfileprefix: ../../ :mrdocs: `format` overloads == Synopses Declared in `<folly/ExceptionWrapper.h>` Formats the exception wrapper into the output context. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<typename Context> auto xref:fmt/formatter-0ce/format-0f.adoc[format]( xref:folly/exception_wrapper.adoc[folly::exception_wrapper] const& ew, Context& ctx) const; ---- [.small]#xref:fmt/formatter-0ce/format-0f.adoc[_» more..._]# Formats an fbstring into the output context. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<typename Context> Context::iterator xref:fmt/formatter-0d/format.adoc[format]( xref:folly/fbstring.adoc[folly::fbstring] const& s, Context& ctx) const; ---- [.small]#xref:fmt/formatter-0d/format.adoc[_» more..._]# == Return Value * An iterator past the end of the written output. * An iterator past the last written character. == Parameters [cols="1,4"] |=== | Name| Description | *ew* | The exception wrapper to format. | *ctx* | The formatting context to write to. | *s* | The fbstring to format. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#