| 3484 | */ |
| 3485 | template <typename... Args> |
| 3486 | inline std::size_t formatted_size(string_view format_str, const Args&... args) { |
| 3487 | return format_to(internal::counting_iterator(), format_str, args...).count(); |
| 3488 | } |
| 3489 | |
| 3490 | template <typename Char, FMT_ENABLE_IF(std::is_same<Char, wchar_t>::value)> |
| 3491 | void vprint(std::FILE* f, basic_string_view<Char> format_str, |
nothing calls this directly
no test coverage detected