| 
									
										
										
										
											2014-10-10 08:40:35 -07:00
										 |  |  | .. _string-formatting-api:
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | *************
 | 
					
						
							|  |  |  | API Reference
 | 
					
						
							|  |  |  | *************
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | The {fmt} library API consists of the following parts:
 | 
					
						
							| 
									
										
										
										
											2014-10-10 08:40:35 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-03 06:24:17 -07:00
										 |  |  | * :ref:`fmt/core.h <core-api>`: the core API providing main formatting functions
 | 
					
						
							|  |  |  |   for ``char``/UTF-8 with compile-time checks and minimal dependencies
 | 
					
						
							|  |  |  | * :ref:`fmt/format.h <format-api>`: the full format API providing additional
 | 
					
						
							|  |  |  |   formatting functions and locale support
 | 
					
						
							|  |  |  | * :ref:`fmt/ranges.h <ranges-api>`: formatting of ranges and tuples
 | 
					
						
							| 
									
										
										
										
											2019-04-12 12:18:42 -04:00
										 |  |  | * :ref:`fmt/chrono.h <chrono-api>`: date and time formatting
 | 
					
						
							| 
									
										
										
										
											2020-06-25 06:57:23 -07:00
										 |  |  | * :ref:`fmt/compile.h <compile-api>`: format string compilation
 | 
					
						
							| 
									
										
										
										
											2020-07-19 09:51:52 -07:00
										 |  |  | * :ref:`fmt/color.h <color-api>`: terminal color and text style
 | 
					
						
							| 
									
										
										
										
											2021-01-09 07:18:56 -08:00
										 |  |  | * :ref:`fmt/os.h <os-api>`: system APIs
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | * :ref:`fmt/ostream.h <ostream-api>`: ``std::ostream`` support
 | 
					
						
							|  |  |  | * :ref:`fmt/printf.h <printf-api>`: ``printf`` formatting
 | 
					
						
							| 
									
										
										
										
											2021-06-02 08:06:52 -07:00
										 |  |  | * :ref:`fmt/xchar.h <xchar-api>`: optional ``wchar_t`` support 
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | All functions and types provided by the library reside in namespace ``fmt`` and
 | 
					
						
							| 
									
										
										
										
											2019-11-19 10:20:31 -08:00
										 |  |  | macros have prefix ``FMT_``.
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | .. _core-api:
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Core API
 | 
					
						
							|  |  |  | ========
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-03 06:24:17 -07:00
										 |  |  | ``fmt/core.h`` defines the core API which provides main formatting functions for
 | 
					
						
							|  |  |  | ``char``/UTF-8 with compile-time checks. It has minimal include dependencies for
 | 
					
						
							|  |  |  | better compile times. This header is only beneficial when using {fmt} as a
 | 
					
						
							|  |  |  | library and not in the header-only mode.
 | 
					
						
							| 
									
										
										
										
											2014-10-10 08:40:35 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | The following functions use :ref:`format string syntax <syntax>`
 | 
					
						
							| 
									
										
										
										
											2018-10-10 10:14:36 -07:00
										 |  |  | similar to that of Python's `str.format
 | 
					
						
							| 
									
										
										
										
											2020-12-05 22:41:38 +08:00
										 |  |  | <https://docs.python.org/3/library/stdtypes.html#str.format>`_.
 | 
					
						
							| 
									
										
										
										
											2021-05-19 09:36:12 -07:00
										 |  |  | They take *fmt* and *args* as arguments.
 | 
					
						
							| 
									
										
										
										
											2014-10-10 08:40:35 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-28 09:47:25 -07:00
										 |  |  | *fmt* is a format string that contains literal text and replacement fields
 | 
					
						
							|  |  |  | surrounded by braces ``{}``. The fields are replaced with formatted arguments
 | 
					
						
							| 
									
										
										
										
											2021-08-29 11:30:35 -07:00
										 |  |  | in the resulting string. `~fmt::format_string` is a format string which can be
 | 
					
						
							|  |  |  | implicitly constructed from a string literal or a ``constexpr`` string and is
 | 
					
						
							|  |  |  | checked at compile time in C++20. To pass a runtime format string wrap it in
 | 
					
						
							| 
									
										
										
										
											2021-08-29 11:21:38 -07:00
										 |  |  | `fmt::runtime`.
 | 
					
						
							| 
									
										
										
										
											2014-10-10 08:40:35 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-11 09:43:54 -08:00
										 |  |  | *args* is an argument list representing objects to be formatted.
 | 
					
						
							| 
									
										
										
										
											2014-10-10 08:40:35 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | .. _format:
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-19 09:39:32 -07:00
										 |  |  | .. doxygenfunction:: format(format_string<T...> fmt, T&&... args) -> std::string
 | 
					
						
							| 
									
										
										
										
											2021-05-19 09:45:33 -07:00
										 |  |  | .. doxygenfunction:: vformat(string_view fmt, format_args args) -> std::string
 | 
					
						
							| 
									
										
										
										
											2014-10-10 08:40:35 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-02 08:06:52 -07:00
										 |  |  | .. doxygenfunction:: format_to(OutputIt out, format_string<T...> fmt, T&&... args) -> OutputIt
 | 
					
						
							| 
									
										
										
										
											2021-08-28 09:47:25 -07:00
										 |  |  | .. doxygenfunction:: format_to_n(OutputIt out, size_t n, format_string<T...> fmt, T&&... args) -> format_to_n_result<OutputIt>
 | 
					
						
							| 
									
										
										
										
											2021-05-19 09:45:33 -07:00
										 |  |  | .. doxygenfunction:: formatted_size(format_string<T...> fmt, T&&... args) -> size_t
 | 
					
						
							| 
									
										
										
										
											2020-07-23 07:34:35 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-08 10:10:44 -08:00
										 |  |  | .. doxygenstruct:: fmt::format_to_n_result
 | 
					
						
							|  |  |  |    :members: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-10 08:40:35 -07:00
										 |  |  | .. _print:
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-19 09:36:12 -07:00
										 |  |  | .. doxygenfunction:: fmt::print(format_string<T...> fmt, T&&... args)
 | 
					
						
							| 
									
										
										
										
											2021-08-29 11:30:35 -07:00
										 |  |  | .. doxygenfunction:: fmt::vprint(string_view fmt, format_args args)
 | 
					
						
							| 
									
										
										
										
											2014-10-10 08:40:35 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-19 09:36:12 -07:00
										 |  |  | .. doxygenfunction:: print(std::FILE *f, format_string<T...> fmt, T&&... args)
 | 
					
						
							| 
									
										
										
										
											2021-06-03 08:28:02 -07:00
										 |  |  | .. doxygenfunction:: vprint(std::FILE *f, string_view fmt, format_args args)
 | 
					
						
							| 
									
										
										
										
											2021-06-03 06:24:17 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | Compile-time Format String Checks
 | 
					
						
							|  |  |  | ---------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Compile-time checks are enabled when using ``FMT_STRING``. They support built-in
 | 
					
						
							|  |  |  | and string types as well as user-defined types with ``constexpr`` ``parse``
 | 
					
						
							|  |  |  | functions in their ``formatter`` specializations.
 | 
					
						
							| 
									
										
										
										
											2021-11-28 23:02:15 +08:00
										 |  |  | Requires C++14 and is a no-op in C++11.
 | 
					
						
							| 
									
										
										
										
											2021-06-03 06:24:17 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | .. doxygendefine:: FMT_STRING
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | To force the use of compile-time checks, define the preprocessor variable
 | 
					
						
							|  |  |  | ``FMT_ENFORCE_COMPILE_STRING``. When set, functions accepting ``FMT_STRING``
 | 
					
						
							|  |  |  | will fail to compile with regular strings. Runtime-checked
 | 
					
						
							|  |  |  | formatting is still possible using ``fmt::vformat``, ``fmt::vprint``, etc.
 | 
					
						
							| 
									
										
										
										
											2020-11-08 09:46:27 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-28 12:05:30 -07:00
										 |  |  | .. doxygenclass:: fmt::basic_format_string
 | 
					
						
							| 
									
										
										
										
											2021-08-28 15:20:56 -07:00
										 |  |  |    :members: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. doxygentypedef:: fmt::format_string
 | 
					
						
							| 
									
										
										
										
											2021-08-28 09:47:25 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-28 16:54:58 -07:00
										 |  |  | .. doxygenfunction:: fmt::runtime(const S&)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-18 09:30:36 -07:00
										 |  |  | Named Arguments
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | ---------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-21 17:37:51 -10:00
										 |  |  | .. doxygenfunction:: fmt::arg(const S&, const T&)
 | 
					
						
							| 
									
										
										
										
											2016-04-29 06:40:31 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-27 09:05:50 -08:00
										 |  |  | Named arguments are not supported in compile-time checks at the moment.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-18 09:30:36 -07:00
										 |  |  | Argument Lists
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | --------------
 | 
					
						
							| 
									
										
										
										
											2016-04-29 06:40:31 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-20 07:56:20 -07:00
										 |  |  | You can create your own formatting function with compile-time checks and small
 | 
					
						
							|  |  |  | binary footprint, for example (https://godbolt.org/z/oba4Mc):
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. code:: c++
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     #include <fmt/format.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     void vlog(const char* file, int line, fmt::string_view format,
 | 
					
						
							|  |  |  |               fmt::format_args args) {
 | 
					
						
							|  |  |  |       fmt::print("{}: {}: ", file, line);
 | 
					
						
							|  |  |  |       fmt::vprint(format, args);
 | 
					
						
							|  |  |  |     }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     template <typename S, typename... Args>
 | 
					
						
							|  |  |  |     void log(const char* file, int line, const S& format, Args&&... args) {
 | 
					
						
							| 
									
										
										
										
											2022-02-14 09:13:35 +05:00
										 |  |  |       vlog(file, line, format, fmt::make_format_args(args...));
 | 
					
						
							| 
									
										
										
										
											2020-07-20 07:56:20 -07:00
										 |  |  |     }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     #define MY_LOG(format, ...) \
 | 
					
						
							|  |  |  |       log(__FILE__, __LINE__, FMT_STRING(format), __VA_ARGS__)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     MY_LOG("invalid squishiness: {}", 42);
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Note that ``vlog`` is not parameterized on argument types which improves compile
 | 
					
						
							|  |  |  | times and reduces binary code size compared to a fully parameterized version.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-20 09:42:14 -07:00
										 |  |  | .. doxygenfunction:: fmt::make_format_args(const Args&...)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-04 07:53:19 -07:00
										 |  |  | .. doxygenclass:: fmt::format_arg_store
 | 
					
						
							| 
									
										
										
										
											2018-03-16 16:04:12 -04:00
										 |  |  |    :members: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-15 09:43:35 -07:00
										 |  |  | .. doxygenclass:: fmt::dynamic_format_arg_store
 | 
					
						
							|  |  |  |    :members: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | .. doxygenclass:: fmt::basic_format_args
 | 
					
						
							|  |  |  |    :members: | 
					
						
							| 
									
										
										
										
											2016-04-29 06:40:31 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-18 12:51:48 -07:00
										 |  |  | .. doxygentypedef:: fmt::format_args
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-04 07:53:19 -07:00
										 |  |  | .. doxygenclass:: fmt::basic_format_arg
 | 
					
						
							| 
									
										
										
										
											2018-03-19 19:47:14 -07:00
										 |  |  |    :members: | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-08 08:16:23 -08:00
										 |  |  | .. doxygenclass:: fmt::basic_format_context
 | 
					
						
							|  |  |  |    :members: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. doxygentypedef:: fmt::format_context
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | Compatibility
 | 
					
						
							|  |  |  | -------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. doxygenclass:: fmt::basic_string_view
 | 
					
						
							|  |  |  |    :members: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-16 16:04:12 -04:00
										 |  |  | .. doxygentypedef:: fmt::string_view
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-18 07:11:45 -08:00
										 |  |  | Locale
 | 
					
						
							|  |  |  | ------
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-24 05:01:54 +01:00
										 |  |  | All formatting is locale-independent by default. Use the ``'L'`` format
 | 
					
						
							| 
									
										
										
										
											2020-01-18 07:11:45 -08:00
										 |  |  | specifier to insert the appropriate number separator characters from the
 | 
					
						
							|  |  |  | locale::
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   #include <fmt/core.h>
 | 
					
						
							|  |  |  |   #include <locale>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   std::locale::global(std::locale("en_US.UTF-8"));
 | 
					
						
							| 
									
										
										
										
											2020-05-20 15:52:19 -07:00
										 |  |  |   auto s = fmt::format("{:L}", 1000000);  // s == "1,000,000"
 | 
					
						
							| 
									
										
										
										
											2020-01-18 07:11:45 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-13 08:04:39 -07:00
										 |  |  | .. _format-api:
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | Format API
 | 
					
						
							|  |  |  | ==========
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-03 06:24:17 -07:00
										 |  |  | ``fmt/format.h`` defines the full format API providing additional formatting
 | 
					
						
							|  |  |  | functions and locale support.
 | 
					
						
							| 
									
										
										
										
											2020-12-24 06:40:46 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-24 07:09:49 -08:00
										 |  |  | .. _udt:
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-18 09:30:36 -07:00
										 |  |  | Formatting User-defined Types
 | 
					
						
							| 
									
										
										
										
											2018-01-20 10:07:29 -08:00
										 |  |  | -----------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-13 14:57:17 -08:00
										 |  |  | The {fmt} library provides formatters for many standard C++ types.
 | 
					
						
							|  |  |  | See :ref:`fmt/ranges.h <ranges-api>` for ranges and tuples including standard
 | 
					
						
							|  |  |  | containers such as ``std::vector`` and :ref:`fmt/chrono.h <chrono-api>` for date
 | 
					
						
							|  |  |  | and time formatting.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-20 10:07:29 -08:00
										 |  |  | To make a user-defined type formattable, specialize the ``formatter<T>`` struct
 | 
					
						
							|  |  |  | template and implement ``parse`` and ``format`` methods::
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  |   #include <fmt/format.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-02 07:33:33 -07:00
										 |  |  |   struct point {
 | 
					
						
							|  |  |  |     double x, y;
 | 
					
						
							|  |  |  |   };
 | 
					
						
							| 
									
										
										
										
											2018-01-20 10:07:29 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-11 20:20:03 -07:00
										 |  |  |   template <> struct fmt::formatter<point> {
 | 
					
						
							| 
									
										
										
										
											2019-11-17 08:54:34 -08:00
										 |  |  |     // Presentation format: 'f' - fixed, 'e' - exponential.
 | 
					
						
							|  |  |  |     char presentation = 'f';
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // Parses format specifications of the form ['f' | 'e'].
 | 
					
						
							| 
									
										
										
										
											2021-05-11 20:20:03 -07:00
										 |  |  |     constexpr auto parse(format_parse_context& ctx) -> decltype(ctx.begin()) {
 | 
					
						
							| 
									
										
										
										
											2019-11-17 08:54:34 -08:00
										 |  |  |       // [ctx.begin(), ctx.end()) is a character range that contains a part of
 | 
					
						
							|  |  |  |       // the format string starting from the format specifications to be parsed,
 | 
					
						
							|  |  |  |       // e.g. in
 | 
					
						
							|  |  |  |       //
 | 
					
						
							|  |  |  |       //   fmt::format("{:f} - point of interest", point{1, 2});
 | 
					
						
							|  |  |  |       //
 | 
					
						
							|  |  |  |       // the range will contain "f} - point of interest". The formatter should
 | 
					
						
							| 
									
										
										
										
											2019-11-17 10:10:32 -08:00
										 |  |  |       // parse specifiers until '}' or the end of the range. In this example
 | 
					
						
							| 
									
										
										
										
											2019-11-17 08:54:34 -08:00
										 |  |  |       // the formatter should parse the 'f' specifier and return an iterator
 | 
					
						
							|  |  |  |       // pointing to '}'.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-17 10:10:32 -08:00
										 |  |  |       // Parse the presentation format and store it in the formatter:
 | 
					
						
							| 
									
										
										
										
											2019-11-17 08:54:34 -08:00
										 |  |  |       auto it = ctx.begin(), end = ctx.end();
 | 
					
						
							|  |  |  |       if (it != end && (*it == 'f' || *it == 'e')) presentation = *it++;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       // Check if reached the end of the range:
 | 
					
						
							| 
									
										
										
										
											2021-10-02 07:33:33 -07:00
										 |  |  |       if (it != end && *it != '}') throw format_error("invalid format");
 | 
					
						
							| 
									
										
										
										
											2019-11-17 08:54:34 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |       // Return an iterator past the end of the parsed range:
 | 
					
						
							|  |  |  |       return it;
 | 
					
						
							|  |  |  |     }
 | 
					
						
							| 
									
										
										
										
											2018-01-20 10:07:29 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-17 10:10:32 -08:00
										 |  |  |     // Formats the point p using the parsed format specification (presentation)
 | 
					
						
							| 
									
										
										
										
											2019-11-17 08:54:34 -08:00
										 |  |  |     // stored in this formatter.
 | 
					
						
							| 
									
										
										
										
											2018-01-20 10:07:29 -08:00
										 |  |  |     template <typename FormatContext>
 | 
					
						
							| 
									
										
										
										
											2022-02-08 06:28:22 -08:00
										 |  |  |     auto format(const point& p, FormatContext& ctx) const -> decltype(ctx.out()) {
 | 
					
						
							| 
									
										
										
										
											2019-11-17 10:10:32 -08:00
										 |  |  |       // ctx.out() is an output iterator to write to.
 | 
					
						
							| 
									
										
										
										
											2021-10-02 07:33:33 -07:00
										 |  |  |       return presentation == 'f'
 | 
					
						
							| 
									
										
										
										
											2022-05-15 09:51:20 -07:00
										 |  |  |                 ? fmt::format_to(ctx.out(), "({:.1f}, {:.1f})", p.x, p.y)
 | 
					
						
							|  |  |  |                 : fmt::format_to(ctx.out(), "({:.1e}, {:.1e})", p.x, p.y);
 | 
					
						
							| 
									
										
										
										
											2019-11-17 13:17:43 -08:00
										 |  |  |     }
 | 
					
						
							| 
									
										
										
										
											2019-11-17 08:54:34 -08:00
										 |  |  |   };
 | 
					
						
							| 
									
										
										
										
											2018-01-20 10:07:29 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-04 08:13:08 -08:00
										 |  |  | Then you can pass objects of type ``point`` to any formatting function::
 | 
					
						
							| 
									
										
										
										
											2018-01-20 10:07:29 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-04 08:13:08 -08:00
										 |  |  |   point p = {1, 2};
 | 
					
						
							| 
									
										
										
										
											2019-11-17 08:54:34 -08:00
										 |  |  |   std::string s = fmt::format("{:f}", p);
 | 
					
						
							| 
									
										
										
										
											2018-03-04 08:13:08 -08:00
										 |  |  |   // s == "(1.0, 2.0)"
 | 
					
						
							| 
									
										
										
										
											2018-01-20 10:07:29 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-17 08:54:34 -08:00
										 |  |  | You can also reuse existing formatters via inheritance or composition, for
 | 
					
						
							|  |  |  | example::
 | 
					
						
							| 
									
										
										
										
											2018-07-08 15:00:44 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-16 17:09:15 +01:00
										 |  |  |   enum class color {red, green, blue};
 | 
					
						
							| 
									
										
										
										
											2018-07-08 15:00:44 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-22 09:15:52 -07:00
										 |  |  |   template <> struct fmt::formatter<color>: formatter<string_view> {
 | 
					
						
							| 
									
										
										
										
											2018-07-08 15:00:44 -07:00
										 |  |  |     // parse is inherited from formatter<string_view>.
 | 
					
						
							|  |  |  |     template <typename FormatContext>
 | 
					
						
							| 
									
										
										
										
											2022-02-08 06:28:22 -08:00
										 |  |  |     auto format(color c, FormatContext& ctx) const {
 | 
					
						
							| 
									
										
										
										
											2018-07-08 15:00:44 -07:00
										 |  |  |       string_view name = "unknown";
 | 
					
						
							|  |  |  |       switch (c) {
 | 
					
						
							| 
									
										
										
										
											2018-09-16 17:09:15 +01:00
										 |  |  |       case color::red:   name = "red"; break;
 | 
					
						
							|  |  |  |       case color::green: name = "green"; break;
 | 
					
						
							|  |  |  |       case color::blue:  name = "blue"; break;
 | 
					
						
							| 
									
										
										
										
											2018-07-08 15:00:44 -07:00
										 |  |  |       }
 | 
					
						
							|  |  |  |       return formatter<string_view>::format(name, ctx);
 | 
					
						
							|  |  |  |     }
 | 
					
						
							|  |  |  |   };
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-22 09:30:09 -07:00
										 |  |  | Since ``parse`` is inherited from ``formatter<string_view>`` it will recognize
 | 
					
						
							|  |  |  | all string format specifications, for example
 | 
					
						
							| 
									
										
										
										
											2020-04-22 09:15:52 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | .. code-block:: c++
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    fmt::format("{:>10}", color::blue)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-22 09:30:09 -07:00
										 |  |  | will return ``"      blue"``.
 | 
					
						
							| 
									
										
										
										
											2020-04-22 09:15:52 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-05 13:21:29 -07:00
										 |  |  | You can also write a formatter for a hierarchy of classes::
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   #include <type_traits>
 | 
					
						
							|  |  |  |   #include <fmt/format.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   struct A {
 | 
					
						
							|  |  |  |     virtual ~A() {}
 | 
					
						
							|  |  |  |     virtual std::string name() const { return "A"; }
 | 
					
						
							|  |  |  |   };
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   struct B : A {
 | 
					
						
							|  |  |  |     virtual std::string name() const { return "B"; }
 | 
					
						
							|  |  |  |   };
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   template <typename T>
 | 
					
						
							|  |  |  |   struct fmt::formatter<T, std::enable_if_t<std::is_base_of<A, T>::value, char>> :
 | 
					
						
							|  |  |  |       fmt::formatter<std::string> {
 | 
					
						
							|  |  |  |     template <typename FormatCtx>
 | 
					
						
							| 
									
										
										
										
											2022-02-08 06:28:22 -08:00
										 |  |  |     auto format(const A& a, FormatCtx& ctx) const {
 | 
					
						
							| 
									
										
										
										
											2018-10-05 13:21:29 -07:00
										 |  |  |       return fmt::formatter<std::string>::format(a.name(), ctx);
 | 
					
						
							|  |  |  |     }
 | 
					
						
							|  |  |  |   };
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   int main() {
 | 
					
						
							|  |  |  |     B b;
 | 
					
						
							|  |  |  |     A& a = b;
 | 
					
						
							|  |  |  |     fmt::print("{}", a); // prints "B"
 | 
					
						
							|  |  |  |   }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-12 09:02:31 -07:00
										 |  |  | If a type provides both a ``formatter`` specialization and an implicit
 | 
					
						
							|  |  |  | conversion to a formattable type, the specialization takes precedence over the
 | 
					
						
							|  |  |  | conversion.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-06 12:48:21 +00:00
										 |  |  | .. doxygenclass:: fmt::basic_format_parse_context
 | 
					
						
							| 
									
										
										
										
											2019-11-05 10:43:18 +00:00
										 |  |  |    :members: | 
					
						
							| 
									
										
										
										
											2019-11-04 11:37:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | Literal-based API
 | 
					
						
							|  |  |  | -----------------
 | 
					
						
							| 
									
										
										
										
											2016-05-07 09:09:33 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | The following user-defined literals are defined in ``fmt/format.h``.
 | 
					
						
							| 
									
										
										
										
											2016-05-07 09:09:33 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-02 08:06:52 -07:00
										 |  |  | .. doxygenfunction:: operator""_format(const char *s, size_t n) -> detail::udl_formatter<char> 
 | 
					
						
							| 
									
										
										
										
											2016-05-07 09:09:33 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-22 19:13:01 -07:00
										 |  |  | .. doxygenfunction:: operator""_a()
 | 
					
						
							| 
									
										
										
										
											2016-05-07 09:09:33 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | Utilities
 | 
					
						
							|  |  |  | ---------
 | 
					
						
							| 
									
										
										
										
											2016-05-07 09:09:33 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-02 19:45:42 -07:00
										 |  |  | .. doxygenfunction:: fmt::ptr(T p) -> const void*
 | 
					
						
							|  |  |  | .. doxygenfunction:: fmt::ptr(const std::unique_ptr<T> &p) -> const void*
 | 
					
						
							|  |  |  | .. doxygenfunction:: fmt::ptr(const std::shared_ptr<T> &p) -> const void*
 | 
					
						
							| 
									
										
										
										
											2020-08-21 06:54:05 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-22 08:06:22 -08:00
										 |  |  | .. doxygenfunction:: fmt::underlying(Enum e) -> typename std::underlying_type<Enum>::type
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-04 20:34:58 -07:00
										 |  |  | .. doxygenfunction:: fmt::to_string(const T &value) -> std::string
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-02 16:25:19 -07:00
										 |  |  | .. doxygenfunction:: fmt::join(Range &&range, string_view sep) -> join_view<detail::iterator_t<Range>, detail::sentinel_t<Range>>
 | 
					
						
							| 
									
										
										
										
											2019-05-29 10:27:05 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-02 16:25:19 -07:00
										 |  |  | .. doxygenfunction:: fmt::join(It begin, Sentinel end, string_view sep) -> join_view<It, Sentinel>
 | 
					
						
							| 
									
										
										
										
											2019-05-29 10:27:05 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-18 10:47:51 -07:00
										 |  |  | .. doxygenfunction:: fmt::group_digits(T value) -> group_digits_view<T>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-15 14:35:55 -07:00
										 |  |  | .. doxygenclass:: fmt::detail::buffer
 | 
					
						
							|  |  |  |    :members: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | .. doxygenclass:: fmt::basic_memory_buffer
 | 
					
						
							|  |  |  |    :protected-members: | 
					
						
							|  |  |  |    :members: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-18 08:56:49 -07:00
										 |  |  | System Errors
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | -------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-02 16:25:19 -07:00
										 |  |  | {fmt} does not use ``errno`` to communicate errors to the user, but it may call
 | 
					
						
							|  |  |  | system functions which set ``errno``. Users should not make any assumptions
 | 
					
						
							|  |  |  | about the value of ``errno`` being preserved by library functions.
 | 
					
						
							| 
									
										
										
										
											2018-05-20 17:10:34 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-02 16:25:19 -07:00
										 |  |  | .. doxygenfunction:: fmt::system_error
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | .. doxygenfunction:: fmt::format_system_error
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-18 08:56:49 -07:00
										 |  |  | Custom Allocators
 | 
					
						
							| 
									
										
										
										
											2018-03-04 12:09:34 -08:00
										 |  |  | -----------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | The {fmt} library supports custom dynamic memory allocators.
 | 
					
						
							|  |  |  | A custom allocator class can be specified as a template argument to
 | 
					
						
							|  |  |  | :class:`fmt::basic_memory_buffer`::
 | 
					
						
							| 
									
										
										
										
											2018-03-04 12:09:34 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  |     using custom_memory_buffer = 
 | 
					
						
							|  |  |  |       fmt::basic_memory_buffer<char, fmt::inline_buffer_size, custom_allocator>;
 | 
					
						
							| 
									
										
										
										
											2018-03-04 12:09:34 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | It is also possible to write a formatting function that uses a custom
 | 
					
						
							|  |  |  | allocator::
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     using custom_string =
 | 
					
						
							|  |  |  |       std::basic_string<char, std::char_traits<char>, custom_allocator>;
 | 
					
						
							| 
									
										
										
										
											2018-03-04 12:09:34 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  |     custom_string vformat(custom_allocator alloc, fmt::string_view format_str,
 | 
					
						
							|  |  |  |                           fmt::format_args args) {
 | 
					
						
							| 
									
										
										
										
											2021-07-10 13:42:51 -07:00
										 |  |  |       auto buf = custom_memory_buffer(alloc);
 | 
					
						
							|  |  |  |       fmt::vformat_to(std::back_inserter(buf), format_str, args);
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  |       return custom_string(buf.data(), buf.size(), alloc);
 | 
					
						
							|  |  |  |     }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     template <typename ...Args>
 | 
					
						
							|  |  |  |     inline custom_string format(custom_allocator alloc,
 | 
					
						
							|  |  |  |                                 fmt::string_view format_str,
 | 
					
						
							| 
									
										
										
										
											2019-11-17 10:15:16 -08:00
										 |  |  |                                 const Args& ... args) {
 | 
					
						
							| 
									
										
										
										
											2018-04-08 07:33:07 -07:00
										 |  |  |       return vformat(alloc, format_str, fmt::make_format_args(args...));
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  |     }
 | 
					
						
							| 
									
										
										
										
											2018-03-19 19:47:14 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-23 07:12:19 -07:00
										 |  |  | The allocator will be used for the output container only. Formatting functions
 | 
					
						
							|  |  |  | normally don't do any allocations for built-in and string types except for
 | 
					
						
							|  |  |  | non-default floating-point formatting that occasionally falls back on
 | 
					
						
							|  |  |  | ``sprintf``.
 | 
					
						
							| 
									
										
										
										
											2018-05-09 06:43:54 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-25 19:23:39 -06:00
										 |  |  | .. _ranges-api:
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Ranges and Tuple Formatting
 | 
					
						
							|  |  |  | ===========================
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | The library also supports convenient formatting of ranges and tuples::
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   #include <fmt/ranges.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   std::tuple<char, int, float> t{'a', 1, 2.0f};
 | 
					
						
							|  |  |  |   // Prints "('a', 1, 2.0)"
 | 
					
						
							|  |  |  |   fmt::print("{}", t);
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | NOTE: currently, the overload of ``fmt::join`` for iterables exists in the main
 | 
					
						
							|  |  |  | ``format.h`` header, but expect this to change in the future.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Using ``fmt::join``, you can separate tuple elements with a custom separator::
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   #include <fmt/ranges.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   std::tuple<int, char> t = {1, 'a'};
 | 
					
						
							|  |  |  |   // Prints "1, a"
 | 
					
						
							|  |  |  |   fmt::print("{}", fmt::join(t, ", "));
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-12 12:18:42 -04:00
										 |  |  | .. _chrono-api:
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-18 08:56:49 -07:00
										 |  |  | Date and Time Formatting
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | ========================
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-07 09:47:56 -08:00
										 |  |  | ``fmt/chrono.h`` provides formatters for
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | * `std::chrono::duration <https://en.cppreference.com/w/cpp/chrono/duration>`_
 | 
					
						
							| 
									
										
										
										
											2020-11-07 10:30:23 -08:00
										 |  |  | * `std::chrono::time_point
 | 
					
						
							|  |  |  |   <https://en.cppreference.com/w/cpp/chrono/time_point>`_
 | 
					
						
							| 
									
										
										
										
											2020-11-07 09:47:56 -08:00
										 |  |  | * `std::tm <https://en.cppreference.com/w/cpp/chrono/c/tm>`_
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-08 05:40:39 -08:00
										 |  |  | The format syntax is described in :ref:`chrono-specs`.
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-08 05:40:39 -08:00
										 |  |  | **Example**::
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-08 05:40:39 -08:00
										 |  |  |   #include <fmt/chrono.h>
 | 
					
						
							| 
									
										
										
										
											2020-11-07 10:23:27 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-08 05:40:39 -08:00
										 |  |  |   int main() {
 | 
					
						
							|  |  |  |     std::time_t t = std::time(nullptr);
 | 
					
						
							| 
									
										
										
										
											2020-11-07 10:19:40 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-08 05:40:39 -08:00
										 |  |  |     // Prints "The date is 2020-11-07." (with the current date):
 | 
					
						
							|  |  |  |     fmt::print("The date is {:%Y-%m-%d}.", fmt::localtime(t));
 | 
					
						
							| 
									
										
										
										
											2020-11-07 10:23:27 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-08 05:40:39 -08:00
										 |  |  |     using namespace std::literals::chrono_literals;
 | 
					
						
							| 
									
										
										
										
											2020-11-07 10:23:27 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-08 05:40:39 -08:00
										 |  |  |     // Prints "Default format: 42s 100ms":
 | 
					
						
							|  |  |  |     fmt::print("Default format: {} {}\n", 42s, 100ms);
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-08 05:40:39 -08:00
										 |  |  |     // Prints "strftime-like format: 03:15:30":
 | 
					
						
							|  |  |  |     fmt::print("strftime-like format: {:%H:%M:%S}\n", 3h + 15min + 30s);
 | 
					
						
							|  |  |  |   }
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-08 10:00:08 -08:00
										 |  |  | .. doxygenfunction:: localtime(std::time_t time)
 | 
					
						
							| 
									
										
										
										
											2020-11-07 10:51:08 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-08 10:00:08 -08:00
										 |  |  | .. doxygenfunction:: gmtime(std::time_t time)
 | 
					
						
							| 
									
										
										
										
											2020-11-07 10:51:08 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-25 06:57:23 -07:00
										 |  |  | .. _compile-api:
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Format string compilation
 | 
					
						
							|  |  |  | =========================
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-06 10:12:40 -08:00
										 |  |  | ``fmt/compile.h`` provides format string compilation enabled via the
 | 
					
						
							|  |  |  | ``FMT_COMPILE`` macro or the ``_cf`` user-defined literal. Format strings
 | 
					
						
							|  |  |  | marked with ``FMT_COMPILE`` or ``_cf`` are parsed, checked and converted into
 | 
					
						
							|  |  |  | efficient formatting code at compile-time. This supports arguments of built-in
 | 
					
						
							|  |  |  | and string types as well as user-defined types with ``constexpr`` ``parse``
 | 
					
						
							|  |  |  | functions in their ``formatter`` specializations. Format string compilation can
 | 
					
						
							|  |  |  | generate more binary code compared to the default API and is only recommended in
 | 
					
						
							|  |  |  | places where formatting is a performance bottleneck.
 | 
					
						
							| 
									
										
										
										
											2020-06-25 06:57:23 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | .. doxygendefine:: FMT_COMPILE
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-06 10:12:40 -08:00
										 |  |  | .. doxygenfunction:: operator""_cf()
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-19 09:51:52 -07:00
										 |  |  | .. _color-api:
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Terminal color and text style
 | 
					
						
							|  |  |  | =============================
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ``fmt/color.h`` provides support for terminal color and text style output.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-08 12:29:26 -08:00
										 |  |  | .. doxygenfunction:: print(const text_style &ts, const S &format_str, const Args&... args)
 | 
					
						
							| 
									
										
										
										
											2020-07-19 09:51:52 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-08 07:18:01 -08:00
										 |  |  | .. doxygenfunction:: fg(detail::color_type)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. doxygenfunction:: bg(detail::color_type)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-10 21:24:47 +01:00
										 |  |  | .. doxygenfunction:: styled(const T& value, text_style ts)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-09 07:18:56 -08:00
										 |  |  | .. _os-api:
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | System APIs
 | 
					
						
							|  |  |  | ===========
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. doxygenclass:: fmt::ostream
 | 
					
						
							|  |  |  |    :members: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-02 16:25:19 -07:00
										 |  |  | .. doxygenfunction:: fmt::windows_error
 | 
					
						
							|  |  |  |    :members: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | .. _ostream-api:
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-18 08:56:49 -07:00
										 |  |  | ``std::ostream`` Support
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | ========================
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ``fmt/ostream.h`` provides ``std::ostream`` support including formatting of
 | 
					
						
							| 
									
										
										
										
											2022-02-13 07:40:43 -08:00
										 |  |  | user-defined types that have an overloaded insertion operator (``operator<<``).
 | 
					
						
							|  |  |  | In order to make a type formattable via ``std::ostream`` you should provide a
 | 
					
						
							| 
									
										
										
										
											2022-02-15 13:28:53 -08:00
										 |  |  | ``formatter`` specialization inherited from ``ostream_formatter``::
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   #include <fmt/ostream.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   class date {
 | 
					
						
							|  |  |  |     int year_, month_, day_;
 | 
					
						
							|  |  |  |   public:
 | 
					
						
							|  |  |  |     date(int year, int month, int day): year_(year), month_(month), day_(day) {}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-17 10:15:16 -08:00
										 |  |  |     friend std::ostream& operator<<(std::ostream& os, const date& d) {
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  |       return os << d.year_ << '-' << d.month_ << '-' << d.day_;
 | 
					
						
							|  |  |  |     }
 | 
					
						
							|  |  |  |   };
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-13 07:40:43 -08:00
										 |  |  |   template <> struct fmt::formatter<date> : ostream_formatter {};
 | 
					
						
							| 
									
										
										
										
											2022-02-04 15:42:22 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  |   std::string s = fmt::format("The date is {}", date(2012, 12, 9));
 | 
					
						
							|  |  |  |   // s == "The date is 2012-12-9"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-22 17:31:31 -07:00
										 |  |  | .. doxygenfunction:: print(std::ostream &os, format_string<T...> fmt, T&&... args)
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | .. _printf-api:
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-18 08:56:49 -07:00
										 |  |  | ``printf`` Formatting
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | =====================
 | 
					
						
							| 
									
										
										
										
											2014-10-10 08:40:35 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-20 08:09:14 -07:00
										 |  |  | The header ``fmt/printf.h`` provides ``printf``-like formatting functionality.
 | 
					
						
							| 
									
										
										
										
											2014-10-10 08:40:35 -07:00
										 |  |  | The following functions use `printf format string syntax
 | 
					
						
							| 
									
										
										
										
											2020-12-05 22:41:38 +08:00
										 |  |  | <https://pubs.opengroup.org/onlinepubs/009695399/functions/fprintf.html>`_ with
 | 
					
						
							| 
									
										
										
										
											2016-07-20 08:09:14 -07:00
										 |  |  | the POSIX extension for positional arguments. Unlike their standard
 | 
					
						
							|  |  |  | counterparts, the ``fmt`` functions are type-safe and throw an exception if an
 | 
					
						
							|  |  |  | argument type doesn't match its format specification.
 | 
					
						
							| 
									
										
										
										
											2014-10-10 08:40:35 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-02 19:45:42 -07:00
										 |  |  | .. doxygenfunction:: printf(const S &format_str, const T&... args)
 | 
					
						
							| 
									
										
										
										
											2014-10-10 08:40:35 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-02 19:45:42 -07:00
										 |  |  | .. doxygenfunction:: fprintf(std::FILE *f, const S &fmt, const T&... args) -> int
 | 
					
						
							| 
									
										
										
										
											2016-08-03 08:52:05 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-02 19:45:42 -07:00
										 |  |  | .. doxygenfunction:: sprintf(const S&, const T&...)
 | 
					
						
							| 
									
										
										
										
											2020-07-05 07:07:29 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-02 16:25:19 -07:00
										 |  |  | .. _xchar-api:
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-02 08:06:52 -07:00
										 |  |  | ``wchar_t`` Support
 | 
					
						
							|  |  |  | ===================
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-28 20:34:45 -07:00
										 |  |  | The optional header ``fmt/xchar.h`` provides support for ``wchar_t`` and exotic
 | 
					
						
							|  |  |  | character types.
 | 
					
						
							| 
									
										
										
										
											2021-06-02 08:06:52 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | .. doxygenstruct:: fmt::is_char
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. doxygentypedef:: fmt::wstring_view
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. doxygentypedef:: fmt::wformat_context
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. doxygenfunction:: fmt::to_wstring(const T &value)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-05 07:07:29 -07:00
										 |  |  | Compatibility with C++20 ``std::format``
 | 
					
						
							|  |  |  | ========================================
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | {fmt} implements nearly all of the `C++20 formatting library
 | 
					
						
							|  |  |  | <https://en.cppreference.com/w/cpp/utility/format>`_ with the following
 | 
					
						
							|  |  |  | differences:
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-05 07:32:43 -07:00
										 |  |  | * Names are defined in the ``fmt`` namespace instead of ``std`` to avoid
 | 
					
						
							| 
									
										
										
										
											2020-07-05 07:07:29 -07:00
										 |  |  |   collisions with standard library implementations.
 | 
					
						
							| 
									
										
										
										
											2020-07-05 07:32:43 -07:00
										 |  |  | * Width calculation doesn't use grapheme clusterization. The latter has been
 | 
					
						
							|  |  |  |   implemented in a separate branch but hasn't been integrated yet.
 | 
					
						
							| 
									
										
										
										
											2021-06-02 16:25:19 -07:00
										 |  |  | * Most C++20 chrono types are not supported yet.
 |