fmt::formatter<folly::reproducible_accumulator<ftype, Fold>>::format

Formats the accumulator by formatting its native floating-point value.

Synopses

Declared in <folly/math/ReproducibleAccumulator.h>

template<class FormatContext>
FormatContext::iterator
format(
    T const&,
    FormatContext& ctx) const;
» more...

Formats the accumulator by formatting its native floating-point value.

template<typename FormatContext>
auto
format(
    folly::reproducible_accumulator<ftype, Fold> const& rfa,
    FormatContext& ctx) const;
» more...

Return Value

An iterator past the end of the output.

Parameters

NameDescription
rfaThe accumulator to format.
ctxThe format context to write to.