| 312 | |
| 313 | template <typename FormatContext> |
| 314 | auto format(const T& value, FormatContext& ctx) -> decltype(ctx.out()) { |
| 315 | internal::format_value(internal::get_container(ctx.out()), value); |
| 316 | return ctx.out(); |
| 317 | } |
| 318 | }; |
| 319 | |
| 320 | /** This template formats data and writes the output to a writer. */ |
nothing calls this directly
no test coverage detected