| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | * :ref:`fmt/core.h <core-api>`: the core API providing argument handling
 | 
					
						
							|  |  |  |   facilities and a lightweight subset of formatting functions
 | 
					
						
							|  |  |  | * :ref:`fmt/format.h <format-api>`: the full format API providing compile-time
 | 
					
						
							| 
									
										
										
										
											2020-04-19 16:23:30 -07:00
										 |  |  |   format string checks, wide string, output iterator and user-defined type
 | 
					
						
							|  |  |  |   support
 | 
					
						
							| 
									
										
										
										
											2019-09-25 19:23:39 -06:00
										 |  |  | * :ref:`fmt/ranges.h <ranges-api>`: additional formatting support for 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
 | 
					
						
							| 
									
										
										
										
											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
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 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
 | 
					
						
							|  |  |  | ========
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ``fmt/core.h`` defines the core API which provides argument handling facilities
 | 
					
						
							| 
									
										
										
										
											2019-09-02 17:14:30 -07:00
										 |  |  | and a lightweight subset of formatting functions. In the header-only mode
 | 
					
						
							|  |  |  | include ``fmt/format.h`` instead of ``fmt/core.h``.
 | 
					
						
							| 
									
										
										
										
											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
 | 
					
						
							| 
									
										
										
										
											2018-03-03 22:12:23 -08:00
										 |  |  | <http://docs.python.org/3/library/stdtypes.html#str.format>`_.
 | 
					
						
							| 
									
										
										
										
											2014-10-10 08:40:35 -07:00
										 |  |  | They take *format_str* and *args* as arguments.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | *format_str* is a format string that contains literal text and replacement
 | 
					
						
							|  |  |  | fields surrounded by braces ``{}``. The fields are replaced with formatted
 | 
					
						
							| 
									
										
										
										
											2018-10-10 09:40:24 -07:00
										 |  |  | arguments in the resulting string. A function taking *format_str* doesn't
 | 
					
						
							|  |  |  | participate in an overload resolution if the latter is not a string.
 | 
					
						
							| 
									
										
										
										
											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:
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-09 17:01:13 -07:00
										 |  |  | .. doxygenfunction:: format(const S&, Args&&...)
 | 
					
						
							| 
									
										
										
										
											2020-04-06 07:17:41 -07:00
										 |  |  | .. doxygenfunction:: vformat(const S&, basic_format_args<buffer_context<type_identity_t<Char>>>)
 | 
					
						
							| 
									
										
										
										
											2014-10-10 08:40:35 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | .. _print:
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-09 17:01:13 -07:00
										 |  |  | .. doxygenfunction:: print(const S&, Args&&...)
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | .. doxygenfunction:: vprint(string_view, format_args)
 | 
					
						
							| 
									
										
										
										
											2014-10-10 08:40:35 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-09 17:01:13 -07:00
										 |  |  | .. doxygenfunction:: print(std::FILE *, const S&, Args&&...)
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | .. doxygenfunction:: vprint(std::FILE *, string_view, format_args)
 | 
					
						
							| 
									
										
										
										
											2018-06-09 09:12:49 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-08 07:33:07 -07:00
										 |  |  | .. doxygenfunction:: fmt::make_format_args(const Args&...)
 | 
					
						
							| 
									
										
										
										
											2018-03-19 19:47:14 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-19 10:21:15 -07:00
										 |  |  | .. doxygenfunction:: fmt::make_args_checked(const S&, const remove_reference_t<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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | .. doxygenstruct:: fmt::format_args
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							|  |  |  | Compatibility
 | 
					
						
							|  |  |  | -------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. doxygenclass:: fmt::basic_string_view
 | 
					
						
							|  |  |  |    :members: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-16 16:04:12 -04:00
										 |  |  | .. doxygentypedef:: fmt::string_view
 | 
					
						
							|  |  |  | .. doxygentypedef:: fmt::wstring_view
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-18 07:11:45 -08:00
										 |  |  | Locale
 | 
					
						
							|  |  |  | ------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | All formatting is locale-independent by default. Use the ``'n'`` format
 | 
					
						
							|  |  |  | 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
 | 
					
						
							|  |  |  | ==========
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ``fmt/format.h`` defines the full format API providing compile-time format
 | 
					
						
							| 
									
										
										
										
											2020-04-19 16:23:30 -07:00
										 |  |  | string checks, wide string, output iterator and user-defined type support.
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-18 09:30:36 -07:00
										 |  |  | Compile-time Format String Checks
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | ---------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-16 06:19:49 -07:00
										 |  |  | 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.
 | 
					
						
							| 
									
										
										
										
											2019-11-27 09:26:32 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-27 09:05:50 -08:00
										 |  |  | .. doxygendefine:: FMT_STRING
 | 
					
						
							| 
									
										
										
										
											2016-04-29 06:40:31 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-14 09:39:22 -07:00
										 |  |  | .. _udt:
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-18 09:30:36 -07:00
										 |  |  | Formatting User-defined Types
 | 
					
						
							| 
									
										
										
										
											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>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-04 08:13:08 -08:00
										 |  |  |   struct point { double x, y; };
 | 
					
						
							| 
									
										
										
										
											2018-01-20 10:07:29 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   template <>
 | 
					
						
							| 
									
										
										
										
											2019-11-17 08:54:34 -08:00
										 |  |  |   struct fmt::formatter<point> {
 | 
					
						
							|  |  |  |     // Presentation format: 'f' - fixed, 'e' - exponential.
 | 
					
						
							|  |  |  |     char presentation = 'f';
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // Parses format specifications of the form ['f' | 'e'].
 | 
					
						
							| 
									
										
										
										
											2019-11-17 10:14:06 -08:00
										 |  |  |     constexpr auto parse(format_parse_context& ctx) {
 | 
					
						
							| 
									
										
										
										
											2020-06-12 06:22:05 -07:00
										 |  |  |     // auto parse(format_parse_context &ctx) -> decltype(ctx.begin()) // c++11
 | 
					
						
							| 
									
										
										
										
											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:
 | 
					
						
							|  |  |  |       if (it != end && *it != '}')
 | 
					
						
							|  |  |  |         throw format_error("invalid format");
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       // 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>
 | 
					
						
							| 
									
										
										
										
											2019-11-17 08:54:34 -08:00
										 |  |  |     auto format(const point& p, FormatContext& ctx) {
 | 
					
						
							| 
									
										
										
										
											2020-06-12 06:22:05 -07:00
										 |  |  |     // auto format(const point &p, FormatContext &ctx) -> decltype(ctx.out()) // c++11
 | 
					
						
							| 
									
										
										
										
											2019-11-17 10:10:32 -08:00
										 |  |  |       // ctx.out() is an output iterator to write to.
 | 
					
						
							| 
									
										
										
										
											2019-11-17 08:54:34 -08:00
										 |  |  |       return format_to(
 | 
					
						
							|  |  |  |           ctx.out(),
 | 
					
						
							|  |  |  |           presentation == 'f' ? "({:.1f}, {:.1f})" : "({:.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>
 | 
					
						
							| 
									
										
										
										
											2019-11-17 10:15:16 -08:00
										 |  |  |     auto format(color c, FormatContext& ctx) {
 | 
					
						
							| 
									
										
										
										
											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>
 | 
					
						
							|  |  |  |     auto format(const A& a, FormatCtx& ctx) {
 | 
					
						
							|  |  |  |       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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-18 09:30:36 -07:00
										 |  |  | Output Iterator Support
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | -----------------------
 | 
					
						
							| 
									
										
										
										
											2016-05-07 09:09:33 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-09 17:01:13 -07:00
										 |  |  | .. doxygenfunction:: fmt::format_to(OutputIt, const S&, Args&&...)
 | 
					
						
							| 
									
										
										
										
											2020-07-06 07:15:39 -07:00
										 |  |  | .. doxygenfunction:: fmt::format_to_n(OutputIt, size_t, const S&, const Args&...)
 | 
					
						
							| 
									
										
										
										
											2018-03-30 08:31:41 -10:00
										 |  |  | .. doxygenstruct:: fmt::format_to_n_result
 | 
					
						
							|  |  |  |    :members: | 
					
						
							| 
									
										
										
										
											2016-05-07 09:09:33 -07: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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-15 15:25:02 -07:00
										 |  |  | .. doxygenfunction:: operator""_format(const char *, size_t)
 | 
					
						
							| 
									
										
										
										
											2016-05-07 09:09:33 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-15 15:25:02 -07:00
										 |  |  | .. doxygenfunction:: operator""_a(const char *, size_t)
 | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-05 06:24:18 -07:00
										 |  |  | .. doxygenstruct:: fmt::is_char
 | 
					
						
							| 
									
										
										
										
											2019-06-02 19:29:49 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-07 07:48:27 -07:00
										 |  |  | .. doxygentypedef:: fmt::char_t
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-16 08:19:26 -07:00
										 |  |  | .. doxygenfunction:: fmt::formatted_size(string_view, const Args&...)
 | 
					
						
							| 
									
										
										
										
											2018-05-16 07:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | .. doxygenfunction:: fmt::to_string(const T&)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-13 09:11:29 -07:00
										 |  |  | .. doxygenfunction:: fmt::to_wstring(const T&)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-03 17:35:15 -07:00
										 |  |  | .. doxygenfunction:: fmt::to_string_view(const Char *)
 | 
					
						
							| 
									
										
										
										
											2018-12-24 09:37:52 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-29 10:27:05 -07:00
										 |  |  | .. doxygenfunction:: fmt::join(const Range&, string_view)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-06 07:15:39 -07:00
										 |  |  | .. doxygenfunction:: fmt::join(It, Sentinel, string_view)
 | 
					
						
							| 
									
										
										
										
											2019-05-29 10:27:05 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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
										 |  |  | -------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-20 17:10:34 -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-03-10 09:25:17 -08:00
										 |  |  | .. doxygenclass:: fmt::system_error
 | 
					
						
							|  |  |  |    :members: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. doxygenfunction:: fmt::format_system_error
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. doxygenclass:: fmt::windows_error
 | 
					
						
							|  |  |  |    :members: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. _formatstrings:
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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) {
 | 
					
						
							|  |  |  |       custom_memory_buffer buf(alloc);
 | 
					
						
							|  |  |  |       fmt::vformat_to(buf, format_str, args);
 | 
					
						
							|  |  |  |       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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-09 06:43:54 -07:00
										 |  |  | The allocator will be used for the output container only. If you are using named
 | 
					
						
							|  |  |  | arguments, the container that stores pointers to them will be allocated using
 | 
					
						
							|  |  |  | the default allocator. Also floating-point formatting falls back on ``sprintf``
 | 
					
						
							|  |  |  | which may do allocations.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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
										 |  |  | ========================
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | The library supports `strftime
 | 
					
						
							|  |  |  | <http://en.cppreference.com/w/cpp/chrono/c/strftime>`_-like date and time
 | 
					
						
							|  |  |  | formatting::
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-12 12:18:42 -04:00
										 |  |  |   #include <fmt/chrono.h>
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   std::time_t t = std::time(nullptr);
 | 
					
						
							|  |  |  |   // Prints "The date is 2016-04-29." (with the current date)
 | 
					
						
							| 
									
										
										
										
											2020-05-02 16:58:23 +03:00
										 |  |  |   fmt::print("The date is {:%Y-%m-%d}.", fmt::localtime(t));
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | The format string syntax is described in the documentation of
 | 
					
						
							|  |  |  | `strftime <http://en.cppreference.com/w/cpp/chrono/c/strftime>`_.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-25 06:57:23 -07:00
										 |  |  | .. _compile-api:
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Format string compilation
 | 
					
						
							|  |  |  | =========================
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-16 06:19:49 -07:00
										 |  |  | ``fmt/compile.h`` provides format string compilation support when using
 | 
					
						
							|  |  |  | ``FMT_COMPILE``. Format strings 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
 | 
					
						
							| 
									
										
										
										
											2020-06-25 11:29:49 -07:00
										 |  |  | 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
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. doxygenfunction:: print(const text_style&, const S&, const Args&...)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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
 | 
					
						
							|  |  |  | user-defined types that have overloaded ``operator<<``::
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   #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_;
 | 
					
						
							|  |  |  |     }
 | 
					
						
							|  |  |  |   };
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   std::string s = fmt::format("The date is {}", date(2012, 12, 9));
 | 
					
						
							|  |  |  |   // s == "The date is 2012-12-9"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-09 17:05:34 -07:00
										 |  |  | .. doxygenfunction:: print(std::basic_ostream<Char>&, const S&, 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
 | 
					
						
							|  |  |  | <http://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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-28 09:28:51 -07:00
										 |  |  | .. doxygenfunction:: printf(const S&, const Args&...)
 | 
					
						
							| 
									
										
										
										
											2014-10-10 08:40:35 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-28 09:28:51 -07:00
										 |  |  | .. doxygenfunction:: fprintf(std::FILE *, const S&, const Args&...)
 | 
					
						
							| 
									
										
										
										
											2015-12-24 07:00:22 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-05 06:24:18 -07:00
										 |  |  | .. doxygenfunction:: fprintf(std::basic_ostream<Char>&, const S&, const Args&...)
 | 
					
						
							| 
									
										
										
										
											2016-08-03 08:52:05 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-28 09:28:51 -07:00
										 |  |  | .. doxygenfunction:: sprintf(const S&, const Args&...)
 | 
					
						
							| 
									
										
										
										
											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.
 | 
					
						
							|  |  |  | * The ``'L'`` format specifier cannot be combined with presentation specifiers
 | 
					
						
							|  |  |  |   yet.
 | 
					
						
							| 
									
										
										
										
											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.
 | 
					
						
							| 
									
										
										
										
											2020-07-05 07:07:29 -07:00
										 |  |  | * Chrono formatting doesn't support C++20 date types since they are not provided
 | 
					
						
							|  |  |  |   by standard library implementations.
 |