|
auto | runtime (wstring_view s) -> basic_runtime< wchar_t > |
|
template<typename... Args> |
constexpr format_arg_store< wformat_context, Args... > | make_wformat_args (const Args &... args) |
|
template<typename It , typename Sentinel > |
auto | join (It begin, Sentinel end, wstring_view sep) -> join_view< It, Sentinel, wchar_t > |
|
template<typename Range > |
auto | join (Range &&range, wstring_view sep) -> join_view< detail::iterator_t< Range >, detail::sentinel_t< Range >, wchar_t > |
|
template<typename T > |
auto | join (std::initializer_list< T > list, wstring_view sep) -> join_view< const T *, const T *, wchar_t > |
|
template<typename Char , FMT_ENABLE_IF(!std::is_same< Char, char >::value) > |
auto | vformat (basic_string_view< Char > format_str, basic_format_args< buffer_context< type_identity_t< Char > > > args) -> std::basic_string< Char > |
|
template<typename... T> |
auto | format (wformat_string< T... > fmt, T &&... args) -> std::wstring |
|
template<typename S , typename... Args, typename Char = char_t<S>, FMT_ENABLE_IF(!std::is_same< Char, char >::value && !std::is_same< Char, wchar_t >::value) > |
auto | format (const S &format_str, Args &&... args) -> std::basic_string< Char > |
|
template<typename Locale , typename S , typename Char = char_t<S>, FMT_ENABLE_IF(detail::is_locale< Locale >::value && detail::is_exotic_char< Char >::value) > |
auto | vformat (const Locale &loc, const S &format_str, basic_format_args< buffer_context< type_identity_t< Char > > > args) -> std::basic_string< Char > |
|
template<typename Locale , typename S , typename... Args, typename Char = char_t<S>, FMT_ENABLE_IF(detail::is_locale< Locale >::value && detail::is_exotic_char< Char >::value) > |
auto | format (const Locale &loc, const S &format_str, Args &&... args) -> std::basic_string< Char > |
|
template<typename OutputIt , typename S , typename Char = char_t<S>, FMT_ENABLE_IF(detail::is_output_iterator< OutputIt, Char >::value && detail::is_exotic_char< Char >::value) > |
auto | vformat_to (OutputIt out, const S &format_str, basic_format_args< buffer_context< type_identity_t< Char > > > args) -> OutputIt |
|
template<typename OutputIt , typename S , typename... Args, typename Char = char_t<S>, FMT_ENABLE_IF(detail::is_output_iterator< OutputIt, Char >::value && detail::is_exotic_char< Char >::value) > |
auto | format_to (OutputIt out, const S &fmt, Args &&... args) -> OutputIt |
|
template<typename Locale , typename S , typename OutputIt , typename... Args, typename Char = char_t<S>, FMT_ENABLE_IF(detail::is_output_iterator< OutputIt, Char >::value && detail::is_locale< Locale >::value && detail::is_exotic_char< Char >::value) > |
auto | vformat_to (OutputIt out, const Locale &loc, const S &format_str, basic_format_args< buffer_context< type_identity_t< Char > > > args) -> OutputIt |
|
template<typename OutputIt , typename Locale , typename S , typename... Args, typename Char = char_t<S>, bool enable = detail::is_output_iterator<OutputIt, Char>::value&& detail::is_locale<Locale>::value&& detail::is_exotic_char<Char>::value> |
auto | format_to (OutputIt out, const Locale &loc, const S &format_str, Args &&... args) -> typename std::enable_if< enable, OutputIt >::type |
|
template<typename OutputIt , typename Char , typename... Args, FMT_ENABLE_IF(detail::is_output_iterator< OutputIt, Char >::value && detail::is_exotic_char< Char >::value) > |
auto | vformat_to_n (OutputIt out, size_t n, basic_string_view< Char > format_str, basic_format_args< buffer_context< type_identity_t< Char > > > args) -> format_to_n_result< OutputIt > |
|
template<typename OutputIt , typename S , typename... Args, typename Char = char_t<S>, FMT_ENABLE_IF(detail::is_output_iterator< OutputIt, Char >::value && detail::is_exotic_char< Char >::value) > |
auto | format_to_n (OutputIt out, size_t n, const S &fmt, const Args &... args) -> format_to_n_result< OutputIt > |
|
template<typename S , typename... Args, typename Char = char_t<S>, FMT_ENABLE_IF(detail::is_exotic_char< Char >::value) > |
auto | formatted_size (const S &fmt, Args &&... args) -> size_t |
|
void | vprint (std::FILE *f, wstring_view fmt, wformat_args args) |
|
void | vprint (wstring_view fmt, wformat_args args) |
|
template<typename... T> |
void | print (std::FILE *f, wformat_string< T... > fmt, T &&... args) |
|
template<typename... T> |
void | print (wformat_string< T... > fmt, T &&... args) |
|
template<typename T > |
auto | to_wstring (const T &value) -> std::wstring |
| Converts value to std::wstring using the default format for type T. More...
|
|