| 
									
										
										
										
											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
 | 
					
						
							|  |  |  |   format string checks, output iterator and user-defined type support
 | 
					
						
							|  |  |  | * :ref:`fmt/time.h <time-api>`: date and time formatting
 | 
					
						
							|  |  |  | * :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
 | 
					
						
							|  |  |  | macros have prefix ``FMT_`` or ``fmt``.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. _core-api:
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Core API
 | 
					
						
							|  |  |  | ========
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ``fmt/core.h`` defines the core API which provides argument handling facilities
 | 
					
						
							|  |  |  | and a lightweight subset of formatting functions.
 | 
					
						
							| 
									
										
										
										
											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:
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-03 10:33:51 -07:00
										 |  |  | .. doxygenfunction:: format(const S&, const Args&...)
 | 
					
						
							|  |  |  | .. doxygenfunction:: vformat(const S&, basic_format_args<typename buffer_context<Char>::type>)
 | 
					
						
							| 
									
										
										
										
											2014-10-10 08:40:35 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | .. _print:
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-03 10:33:51 -07:00
										 |  |  | .. doxygenfunction:: print(const S&, const Args&...)
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | .. doxygenfunction:: vprint(string_view, format_args)
 | 
					
						
							| 
									
										
										
										
											2014-10-10 08:40:35 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-03 10:33:51 -07:00
										 |  |  | .. doxygenfunction:: print(std::FILE *, const S&, const 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
										 |  |  | .. doxygenfunction:: vprint(std::FILE *, wstring_view, wformat_args)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | Named arguments
 | 
					
						
							|  |  |  | ---------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. doxygenfunction:: fmt::arg(string_view, const T&)
 | 
					
						
							| 
									
										
										
										
											2016-04-29 06:40:31 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | Argument lists
 | 
					
						
							|  |  |  | --------------
 | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-04 07:53:19 -07:00
										 |  |  | .. doxygenclass:: fmt::format_arg_store
 | 
					
						
							| 
									
										
										
										
											2018-03-16 16:04:12 -04:00
										 |  |  |    :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
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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
 | 
					
						
							|  |  |  | string checks, output iterator and user-defined type support.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Compile-time format string checks
 | 
					
						
							|  |  |  | ---------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. doxygendefine:: fmt
 | 
					
						
							| 
									
										
										
										
											2016-04-29 06:40:31 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-20 10:07:29 -08:00
										 |  |  | Formatting user-defined types
 | 
					
						
							|  |  |  | -----------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 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
										 |  |  | 
 | 
					
						
							|  |  |  |   namespace fmt {
 | 
					
						
							|  |  |  |   template <>
 | 
					
						
							| 
									
										
										
										
											2018-03-04 08:13:08 -08:00
										 |  |  |   struct formatter<point> {
 | 
					
						
							| 
									
										
										
										
											2018-01-20 10:07:29 -08:00
										 |  |  |     template <typename ParseContext>
 | 
					
						
							| 
									
										
										
										
											2018-03-04 09:16:51 -08:00
										 |  |  |     constexpr auto parse(ParseContext &ctx) { return ctx.begin(); }
 | 
					
						
							| 
									
										
										
										
											2018-01-20 10:07:29 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     template <typename FormatContext>
 | 
					
						
							| 
									
										
										
										
											2018-03-04 08:13:08 -08:00
										 |  |  |     auto format(const point &p, FormatContext &ctx) {
 | 
					
						
							|  |  |  |       return format_to(ctx.begin(), "({:.1f}, {:.1f})", p.x, p.y);
 | 
					
						
							| 
									
										
										
										
											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};
 | 
					
						
							|  |  |  |   std::string s = fmt::format("{}", p);
 | 
					
						
							|  |  |  |   // s == "(1.0, 2.0)"
 | 
					
						
							| 
									
										
										
										
											2018-01-20 10:07:29 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-04 08:13:08 -08:00
										 |  |  | In the example above the ``formatter<point>::parse`` function ignores the
 | 
					
						
							| 
									
										
										
										
											2018-01-20 10:07:29 -08:00
										 |  |  | contents of the format string referred to by ``ctx.begin()`` so the object will
 | 
					
						
							| 
									
										
										
										
											2018-02-11 13:43:16 -08:00
										 |  |  | always be formatted in the same way. See ``formatter<tm>::parse`` in
 | 
					
						
							| 
									
										
										
										
											2018-01-20 10:07:29 -08:00
										 |  |  | :file:`fmt/time.h` for an advanced example of how to parse the format string and
 | 
					
						
							|  |  |  | customize the formatted output.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-08 15:00:44 -07:00
										 |  |  | You can also reuse existing formatters, for example::
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-16 17:09:15 +01:00
										 |  |  |   enum class color {red, green, blue};
 | 
					
						
							| 
									
										
										
										
											2018-07-08 15:00:44 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   template <>
 | 
					
						
							|  |  |  |   struct fmt::formatter<color>: formatter<string_view> {
 | 
					
						
							|  |  |  |     // parse is inherited from formatter<string_view>.
 | 
					
						
							|  |  |  |     template <typename FormatContext>
 | 
					
						
							|  |  |  |     auto format(color c, FormatContext &ctx) {
 | 
					
						
							|  |  |  |       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);
 | 
					
						
							|  |  |  |     }
 | 
					
						
							|  |  |  |   };
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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"
 | 
					
						
							|  |  |  |   }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-20 10:07:29 -08:00
										 |  |  | This section shows how to define a custom format function for a user-defined
 | 
					
						
							|  |  |  | type. The next section describes how to get ``fmt`` to use a conventional stream
 | 
					
						
							|  |  |  | output ``operator<<`` when one is defined for a user-defined type.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | Output iterator support
 | 
					
						
							|  |  |  | -----------------------
 | 
					
						
							| 
									
										
										
										
											2016-05-07 09:09:33 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-12 17:50:50 -08:00
										 |  |  | .. doxygenfunction:: fmt::format_to(OutputIt, const S&, const Args&...)
 | 
					
						
							| 
									
										
										
										
											2018-07-18 06:44:46 -07:00
										 |  |  | .. doxygenfunction:: fmt::format_to_n(OutputIt, std::size_t, string_view, 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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | .. doxygenfunction:: operator""_format(const char *, std::size_t)
 | 
					
						
							| 
									
										
										
										
											2016-05-07 09:09:33 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | .. doxygenfunction:: operator""_a(const char *, std::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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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&)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-24 10:56:13 -08:00
										 |  |  | .. doxygenfunction:: fmt::to_string_view(basic_string_view<Char>)
 | 
					
						
							| 
									
										
										
										
											2018-12-24 09:37:52 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | .. doxygenclass:: fmt::basic_memory_buffer
 | 
					
						
							|  |  |  |    :protected-members: | 
					
						
							|  |  |  |    :members: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | System errors
 | 
					
						
							|  |  |  | -------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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:
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 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,
 | 
					
						
							|  |  |  |                                 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.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-04 12:09:34 -08:00
										 |  |  | Custom formatting of built-in types
 | 
					
						
							|  |  |  | -----------------------------------
 | 
					
						
							| 
									
										
										
										
											2016-04-20 07:16:52 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-29 06:40:31 -07:00
										 |  |  | It is possible to change the way arguments are formatted by providing a
 | 
					
						
							|  |  |  | custom argument formatter class::
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-03 22:12:23 -08:00
										 |  |  |   using arg_formatter =
 | 
					
						
							|  |  |  |     fmt::arg_formatter<fmt::back_insert_range<fmt::internal::buffer>>;
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-29 06:40:31 -07:00
										 |  |  |   // A custom argument formatter that formats negative integers as unsigned
 | 
					
						
							|  |  |  |   // with the ``x`` format specifier.
 | 
					
						
							| 
									
										
										
										
											2018-03-03 22:12:23 -08:00
										 |  |  |   class custom_arg_formatter : public arg_formatter {
 | 
					
						
							| 
									
										
										
										
											2016-10-07 03:22:14 -07:00
										 |  |  |    public:
 | 
					
						
							| 
									
										
										
										
											2018-10-02 06:21:19 -07:00
										 |  |  |     custom_arg_formatter(fmt::format_context &ctx,
 | 
					
						
							|  |  |  |                          fmt::format_specs *spec = nullptr)
 | 
					
						
							| 
									
										
										
										
											2018-03-03 22:12:23 -08:00
										 |  |  |       : arg_formatter(ctx, spec) {}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     using arg_formatter::operator();
 | 
					
						
							| 
									
										
										
										
											2016-04-29 06:40:31 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-08 09:06:54 -07:00
										 |  |  |     auto operator()(int value) {
 | 
					
						
							| 
									
										
										
										
											2016-04-29 06:40:31 -07:00
										 |  |  |       if (spec().type() == 'x')
 | 
					
						
							| 
									
										
										
										
											2018-09-08 09:06:54 -07:00
										 |  |  |         return (*this)(static_cast<unsigned>(value)); // convert to unsigned and format
 | 
					
						
							|  |  |  |       return arg_formatter::operator()(value);
 | 
					
						
							| 
									
										
										
										
											2016-04-29 06:40:31 -07:00
										 |  |  |     }
 | 
					
						
							|  |  |  |   };
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-03 22:12:23 -08:00
										 |  |  |   std::string custom_vformat(fmt::string_view format_str, fmt::format_args args) {
 | 
					
						
							|  |  |  |     fmt::memory_buffer buffer;
 | 
					
						
							| 
									
										
										
										
											2018-03-04 06:40:43 -08:00
										 |  |  |     // Pass custom argument formatter as a template arg to vformat_to.
 | 
					
						
							|  |  |  |     fmt::vformat_to<custom_arg_formatter>(buffer, format_str, args);
 | 
					
						
							| 
									
										
										
										
											2018-03-03 22:12:23 -08:00
										 |  |  |     return fmt::to_string(buffer);
 | 
					
						
							|  |  |  |   }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   template <typename ...Args>
 | 
					
						
							|  |  |  |   inline std::string custom_format(
 | 
					
						
							|  |  |  |       fmt::string_view format_str, const Args &... args) {
 | 
					
						
							| 
									
										
										
										
											2018-04-08 07:33:07 -07:00
										 |  |  |     return custom_vformat(format_str, fmt::make_format_args(args...));
 | 
					
						
							| 
									
										
										
										
											2016-04-29 06:40:31 -07:00
										 |  |  |   }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   std::string s = custom_format("{:x}", -42); // s == "ffffffd6"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-03 22:12:23 -08:00
										 |  |  | .. doxygenclass:: fmt::arg_formatter
 | 
					
						
							| 
									
										
										
										
											2016-04-20 07:16:52 -07:00
										 |  |  |    :members: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | .. _time-api:
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Date and time formatting
 | 
					
						
							|  |  |  | ========================
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | The library supports `strftime
 | 
					
						
							|  |  |  | <http://en.cppreference.com/w/cpp/chrono/c/strftime>`_-like date and time
 | 
					
						
							|  |  |  | formatting::
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   #include <fmt/time.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   std::time_t t = std::time(nullptr);
 | 
					
						
							|  |  |  |   // Prints "The date is 2016-04-29." (with the current date)
 | 
					
						
							|  |  |  |   fmt::print("The date is {:%Y-%m-%d}.", *std::localtime(&t));
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | The format string syntax is described in the documentation of
 | 
					
						
							|  |  |  | `strftime <http://en.cppreference.com/w/cpp/chrono/c/strftime>`_.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. _ostream-api:
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ``std::ostream`` support
 | 
					
						
							|  |  |  | ========================
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ``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) {}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     friend std::ostream &operator<<(std::ostream &os, const date &d) {
 | 
					
						
							|  |  |  |       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"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-28 12:53:09 -08:00
										 |  |  | .. doxygenfunction:: print(std::basic_ostream<fmt::char_t<S>>&, const S&, const Args&...)
 | 
					
						
							| 
									
										
										
										
											2018-03-10 09:25:17 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | .. _printf-api:
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ``printf`` formatting
 | 
					
						
							|  |  |  | =====================
 | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-28 12:53:09 -08:00
										 |  |  | .. doxygenfunction:: fprintf(std::basic_ostream<fmt::char_t<S>>&, 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&...)
 |