| 3197 | /** Formats arguments and writes the output to the range. */ |
| 3198 | template <typename ArgFormatter, typename Char, typename Context> |
| 3199 | typename Context::iterator vformat_to( |
| 3200 | typename ArgFormatter::range out, basic_string_view<Char> format_str, |
| 3201 | basic_format_args<Context> args, |
| 3202 | internal::locale_ref loc = internal::locale_ref()) { |
| 3203 | format_handler<ArgFormatter, Char, Context> h(out, format_str, args, loc); |
| 3204 | internal::parse_format_string<false>(format_str, h); |
| 3205 | return h.context.out(); |
| 3206 | } |
| 3207 | |
| 3208 | // Casts ``p`` to ``const void*`` for pointer formatting. |
| 3209 | // Example: |
no test coverage detected