2014-10-10 15:40:35 +00:00
|
|
|
.. _string-formatting-api:
|
|
|
|
|
|
|
|
*************
|
|
|
|
API Reference
|
|
|
|
*************
|
|
|
|
|
2018-03-10 17:25:17 +00:00
|
|
|
The {fmt} library API consists of the following parts:
|
2014-10-10 15:40:35 +00:00
|
|
|
|
2018-03-10 17:25:17 +00: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 23:23:30 +00:00
|
|
|
format string checks, wide string, output iterator and user-defined type
|
|
|
|
support
|
2019-09-26 01:23:39 +00:00
|
|
|
* :ref:`fmt/ranges.h <ranges-api>`: additional formatting support for ranges
|
|
|
|
and tuples
|
2019-04-12 16:18:42 +00:00
|
|
|
* :ref:`fmt/chrono.h <chrono-api>`: date and time formatting
|
2020-06-25 13:57:23 +00:00
|
|
|
* :ref:`fmt/compile.h <compile-api>`: format string compilation
|
2018-03-10 17:25:17 +00: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 18:20:31 +00:00
|
|
|
macros have prefix ``FMT_``.
|
2018-03-10 17:25:17 +00:00
|
|
|
|
|
|
|
.. _core-api:
|
|
|
|
|
|
|
|
Core API
|
|
|
|
========
|
|
|
|
|
|
|
|
``fmt/core.h`` defines the core API which provides argument handling facilities
|
2019-09-03 00:14:30 +00: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 15:40:35 +00:00
|
|
|
|
2018-03-10 17:25:17 +00:00
|
|
|
The following functions use :ref:`format string syntax <syntax>`
|
2018-10-10 17:14:36 +00:00
|
|
|
similar to that of Python's `str.format
|
2018-03-04 06:12:23 +00:00
|
|
|
<http://docs.python.org/3/library/stdtypes.html#str.format>`_.
|
2014-10-10 15:40:35 +00: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 16:40:24 +00: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 15:40:35 +00:00
|
|
|
|
2018-02-11 17:43:54 +00:00
|
|
|
*args* is an argument list representing objects to be formatted.
|
2014-10-10 15:40:35 +00:00
|
|
|
|
|
|
|
.. _format:
|
|
|
|
|
2019-07-10 00:01:13 +00:00
|
|
|
.. doxygenfunction:: format(const S&, Args&&...)
|
2020-04-06 14:17:41 +00:00
|
|
|
.. doxygenfunction:: vformat(const S&, basic_format_args<buffer_context<type_identity_t<Char>>>)
|
2014-10-10 15:40:35 +00:00
|
|
|
|
|
|
|
.. _print:
|
|
|
|
|
2019-07-10 00:01:13 +00:00
|
|
|
.. doxygenfunction:: print(const S&, Args&&...)
|
2018-03-10 17:25:17 +00:00
|
|
|
.. doxygenfunction:: vprint(string_view, format_args)
|
2014-10-10 15:40:35 +00:00
|
|
|
|
2019-07-10 00:01:13 +00:00
|
|
|
.. doxygenfunction:: print(std::FILE *, const S&, Args&&...)
|
2018-03-10 17:25:17 +00:00
|
|
|
.. doxygenfunction:: vprint(std::FILE *, string_view, format_args)
|
2018-06-09 07:12:49 +00:00
|
|
|
|
2019-05-18 16:30:36 +00:00
|
|
|
Named Arguments
|
2018-03-10 17:25:17 +00:00
|
|
|
---------------
|
|
|
|
|
2019-02-22 03:37:51 +00:00
|
|
|
.. doxygenfunction:: fmt::arg(const S&, const T&)
|
2016-04-29 13:40:31 +00:00
|
|
|
|
2019-01-27 17:05:50 +00:00
|
|
|
Named arguments are not supported in compile-time checks at the moment.
|
|
|
|
|
2019-05-18 16:30:36 +00:00
|
|
|
Argument Lists
|
2018-03-10 17:25:17 +00:00
|
|
|
--------------
|
2016-04-29 13:40:31 +00:00
|
|
|
|
2018-04-08 14:33:07 +00:00
|
|
|
.. doxygenfunction:: fmt::make_format_args(const Args&...)
|
2018-03-20 02:47:14 +00:00
|
|
|
|
2018-04-04 14:53:19 +00:00
|
|
|
.. doxygenclass:: fmt::format_arg_store
|
2018-03-16 20:04:12 +00:00
|
|
|
:members:
|
|
|
|
|
2020-05-15 16:43:35 +00:00
|
|
|
.. doxygenclass:: fmt::dynamic_format_arg_store
|
|
|
|
:members:
|
|
|
|
|
2018-03-10 17:25:17 +00:00
|
|
|
.. doxygenclass:: fmt::basic_format_args
|
|
|
|
:members:
|
2016-04-29 13:40:31 +00:00
|
|
|
|
2018-03-10 17:25:17 +00:00
|
|
|
.. doxygenstruct:: fmt::format_args
|
|
|
|
|
2018-04-04 14:53:19 +00:00
|
|
|
.. doxygenclass:: fmt::basic_format_arg
|
2018-03-20 02:47:14 +00:00
|
|
|
:members:
|
2018-03-10 17:25:17 +00:00
|
|
|
|
|
|
|
Compatibility
|
|
|
|
-------------
|
|
|
|
|
|
|
|
.. doxygenclass:: fmt::basic_string_view
|
|
|
|
:members:
|
|
|
|
|
2018-03-16 20:04:12 +00:00
|
|
|
.. doxygentypedef:: fmt::string_view
|
|
|
|
.. doxygentypedef:: fmt::wstring_view
|
|
|
|
|
2020-01-18 15:11:45 +00: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 22:52:19 +00:00
|
|
|
auto s = fmt::format("{:L}", 1000000); // s == "1,000,000"
|
2020-01-18 15:11:45 +00:00
|
|
|
|
2018-05-13 15:04:39 +00:00
|
|
|
.. _format-api:
|
|
|
|
|
2018-03-10 17:25:17 +00:00
|
|
|
Format API
|
|
|
|
==========
|
|
|
|
|
|
|
|
``fmt/format.h`` defines the full format API providing compile-time format
|
2020-04-19 23:23:30 +00:00
|
|
|
string checks, wide string, output iterator and user-defined type support.
|
2018-03-10 17:25:17 +00:00
|
|
|
|
2019-05-18 16:30:36 +00:00
|
|
|
Compile-time Format String Checks
|
2018-03-10 17:25:17 +00:00
|
|
|
---------------------------------
|
|
|
|
|
2019-11-27 17:26:32 +00:00
|
|
|
Compile-time checks are supported for built-in and string types as well as
|
|
|
|
user-defined types with ``constexpr`` ``parse`` functions in their ``formatter``
|
|
|
|
specializations.
|
|
|
|
|
2019-01-27 17:05:50 +00:00
|
|
|
.. doxygendefine:: FMT_STRING
|
2016-04-29 13:40:31 +00:00
|
|
|
|
2019-05-18 16:30:36 +00:00
|
|
|
Formatting User-defined Types
|
2018-01-20 18:07:29 +00:00
|
|
|
-----------------------------
|
|
|
|
|
|
|
|
To make a user-defined type formattable, specialize the ``formatter<T>`` struct
|
|
|
|
template and implement ``parse`` and ``format`` methods::
|
|
|
|
|
2018-03-10 17:25:17 +00:00
|
|
|
#include <fmt/format.h>
|
|
|
|
|
2018-03-04 16:13:08 +00:00
|
|
|
struct point { double x, y; };
|
2018-01-20 18:07:29 +00:00
|
|
|
|
|
|
|
template <>
|
2019-11-17 16:54:34 +00: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 18:14:06 +00:00
|
|
|
constexpr auto parse(format_parse_context& ctx) {
|
2020-06-12 13:22:05 +00:00
|
|
|
// auto parse(format_parse_context &ctx) -> decltype(ctx.begin()) // c++11
|
2019-11-17 16:54:34 +00: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 18:10:32 +00:00
|
|
|
// parse specifiers until '}' or the end of the range. In this example
|
2019-11-17 16:54:34 +00:00
|
|
|
// the formatter should parse the 'f' specifier and return an iterator
|
|
|
|
// pointing to '}'.
|
|
|
|
|
2019-11-17 18:10:32 +00:00
|
|
|
// Parse the presentation format and store it in the formatter:
|
2019-11-17 16:54:34 +00: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 18:07:29 +00:00
|
|
|
|
2019-11-17 18:10:32 +00:00
|
|
|
// Formats the point p using the parsed format specification (presentation)
|
2019-11-17 16:54:34 +00:00
|
|
|
// stored in this formatter.
|
2018-01-20 18:07:29 +00:00
|
|
|
template <typename FormatContext>
|
2019-11-17 16:54:34 +00:00
|
|
|
auto format(const point& p, FormatContext& ctx) {
|
2020-06-12 13:22:05 +00:00
|
|
|
// auto format(const point &p, FormatContext &ctx) -> decltype(ctx.out()) // c++11
|
2019-11-17 18:10:32 +00:00
|
|
|
// ctx.out() is an output iterator to write to.
|
2019-11-17 16:54:34 +00:00
|
|
|
return format_to(
|
|
|
|
ctx.out(),
|
|
|
|
presentation == 'f' ? "({:.1f}, {:.1f})" : "({:.1e}, {:.1e})",
|
|
|
|
p.x, p.y);
|
2019-11-17 21:17:43 +00:00
|
|
|
}
|
2019-11-17 16:54:34 +00:00
|
|
|
};
|
2018-01-20 18:07:29 +00:00
|
|
|
|
2018-03-04 16:13:08 +00:00
|
|
|
Then you can pass objects of type ``point`` to any formatting function::
|
2018-01-20 18:07:29 +00:00
|
|
|
|
2018-03-04 16:13:08 +00:00
|
|
|
point p = {1, 2};
|
2019-11-17 16:54:34 +00:00
|
|
|
std::string s = fmt::format("{:f}", p);
|
2018-03-04 16:13:08 +00:00
|
|
|
// s == "(1.0, 2.0)"
|
2018-01-20 18:07:29 +00:00
|
|
|
|
2019-11-17 16:54:34 +00:00
|
|
|
You can also reuse existing formatters via inheritance or composition, for
|
|
|
|
example::
|
2018-07-08 22:00:44 +00:00
|
|
|
|
2018-09-16 16:09:15 +00:00
|
|
|
enum class color {red, green, blue};
|
2018-07-08 22:00:44 +00:00
|
|
|
|
2020-04-22 16:15:52 +00:00
|
|
|
template <> struct fmt::formatter<color>: formatter<string_view> {
|
2018-07-08 22:00:44 +00:00
|
|
|
// parse is inherited from formatter<string_view>.
|
|
|
|
template <typename FormatContext>
|
2019-11-17 18:15:16 +00:00
|
|
|
auto format(color c, FormatContext& ctx) {
|
2018-07-08 22:00:44 +00:00
|
|
|
string_view name = "unknown";
|
|
|
|
switch (c) {
|
2018-09-16 16:09:15 +00:00
|
|
|
case color::red: name = "red"; break;
|
|
|
|
case color::green: name = "green"; break;
|
|
|
|
case color::blue: name = "blue"; break;
|
2018-07-08 22:00:44 +00:00
|
|
|
}
|
|
|
|
return formatter<string_view>::format(name, ctx);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-04-22 16:30:09 +00:00
|
|
|
Since ``parse`` is inherited from ``formatter<string_view>`` it will recognize
|
|
|
|
all string format specifications, for example
|
2020-04-22 16:15:52 +00:00
|
|
|
|
|
|
|
.. code-block:: c++
|
|
|
|
|
|
|
|
fmt::format("{:>10}", color::blue)
|
|
|
|
|
2020-04-22 16:30:09 +00:00
|
|
|
will return ``" blue"``.
|
2020-04-22 16:15:52 +00:00
|
|
|
|
2018-10-05 20:21:29 +00: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"
|
|
|
|
}
|
|
|
|
|
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 16:30:36 +00:00
|
|
|
Output Iterator Support
|
2018-03-10 17:25:17 +00:00
|
|
|
-----------------------
|
2016-05-07 16:09:33 +00:00
|
|
|
|
2019-07-10 00:01:13 +00:00
|
|
|
.. doxygenfunction:: fmt::format_to(OutputIt, const S&, Args&&...)
|
|
|
|
.. doxygenfunction:: fmt::format_to_n(OutputIt, std::size_t, string_view, Args&&...)
|
2018-03-30 18:31:41 +00:00
|
|
|
.. doxygenstruct:: fmt::format_to_n_result
|
|
|
|
:members:
|
2016-05-07 16:09:33 +00:00
|
|
|
|
2018-03-10 17:25:17 +00:00
|
|
|
Literal-based API
|
|
|
|
-----------------
|
2016-05-07 16:09:33 +00:00
|
|
|
|
2018-03-10 17:25:17 +00:00
|
|
|
The following user-defined literals are defined in ``fmt/format.h``.
|
2016-05-07 16:09:33 +00:00
|
|
|
|
2020-05-15 22:25:02 +00:00
|
|
|
.. doxygenfunction:: operator""_format(const char *, size_t)
|
2016-05-07 16:09:33 +00:00
|
|
|
|
2020-05-15 22:25:02 +00:00
|
|
|
.. doxygenfunction:: operator""_a(const char *, size_t)
|
2016-05-07 16:09:33 +00:00
|
|
|
|
2018-03-10 17:25:17 +00:00
|
|
|
Utilities
|
|
|
|
---------
|
2016-05-07 16:09:33 +00:00
|
|
|
|
2019-06-05 13:24:18 +00:00
|
|
|
.. doxygenstruct:: fmt::is_char
|
2019-06-03 02:29:49 +00:00
|
|
|
|
2018-10-07 14:48:27 +00:00
|
|
|
.. doxygentypedef:: fmt::char_t
|
|
|
|
|
2018-05-16 15:19:26 +00:00
|
|
|
.. doxygenfunction:: fmt::formatted_size(string_view, const Args&...)
|
2018-05-16 14:58:43 +00:00
|
|
|
|
2018-03-10 17:25:17 +00:00
|
|
|
.. doxygenfunction:: fmt::to_string(const T&)
|
|
|
|
|
2018-05-13 16:11:29 +00:00
|
|
|
.. doxygenfunction:: fmt::to_wstring(const T&)
|
|
|
|
|
2019-06-04 00:35:15 +00:00
|
|
|
.. doxygenfunction:: fmt::to_string_view(const Char *)
|
2018-12-24 17:37:52 +00:00
|
|
|
|
2019-05-29 17:27:05 +00:00
|
|
|
.. doxygenfunction:: fmt::join(const Range&, string_view)
|
|
|
|
|
|
|
|
.. doxygenfunction:: fmt::join(It, It, string_view)
|
|
|
|
|
2020-05-15 21:35:55 +00:00
|
|
|
.. doxygenclass:: fmt::detail::buffer
|
|
|
|
:members:
|
|
|
|
|
2018-03-10 17:25:17 +00:00
|
|
|
.. doxygenclass:: fmt::basic_memory_buffer
|
|
|
|
:protected-members:
|
|
|
|
:members:
|
|
|
|
|
2019-05-18 15:56:49 +00:00
|
|
|
System Errors
|
2018-03-10 17:25:17 +00:00
|
|
|
-------------
|
|
|
|
|
2018-05-21 00:10:34 +00: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 17:25:17 +00:00
|
|
|
.. doxygenclass:: fmt::system_error
|
|
|
|
:members:
|
|
|
|
|
|
|
|
.. doxygenfunction:: fmt::format_system_error
|
|
|
|
|
|
|
|
.. doxygenclass:: fmt::windows_error
|
|
|
|
:members:
|
|
|
|
|
|
|
|
.. _formatstrings:
|
|
|
|
|
2019-05-18 15:56:49 +00:00
|
|
|
Custom Allocators
|
2018-03-04 20:09:34 +00:00
|
|
|
-----------------
|
|
|
|
|
2018-03-10 17:25:17 +00: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 20:09:34 +00:00
|
|
|
|
2018-03-10 17:25:17 +00:00
|
|
|
using custom_memory_buffer =
|
|
|
|
fmt::basic_memory_buffer<char, fmt::inline_buffer_size, custom_allocator>;
|
2018-03-04 20:09:34 +00:00
|
|
|
|
2018-03-10 17:25:17 +00: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 20:09:34 +00:00
|
|
|
|
2018-03-10 17:25:17 +00: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 18:15:16 +00:00
|
|
|
const Args& ... args) {
|
2018-04-08 14:33:07 +00:00
|
|
|
return vformat(alloc, format_str, fmt::make_format_args(args...));
|
2018-03-10 17:25:17 +00:00
|
|
|
}
|
2018-03-20 02:47:14 +00:00
|
|
|
|
2018-05-09 13:43:54 +00: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-26 01:23:39 +00: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 16:18:42 +00:00
|
|
|
.. _chrono-api:
|
2018-03-10 17:25:17 +00:00
|
|
|
|
2019-05-18 15:56:49 +00:00
|
|
|
Date and Time Formatting
|
2018-03-10 17:25:17 +00:00
|
|
|
========================
|
|
|
|
|
|
|
|
The library supports `strftime
|
|
|
|
<http://en.cppreference.com/w/cpp/chrono/c/strftime>`_-like date and time
|
|
|
|
formatting::
|
|
|
|
|
2019-04-12 16:18:42 +00:00
|
|
|
#include <fmt/chrono.h>
|
2018-03-10 17:25:17 +00:00
|
|
|
|
|
|
|
std::time_t t = std::time(nullptr);
|
|
|
|
// Prints "The date is 2016-04-29." (with the current date)
|
2020-05-02 13:58:23 +00:00
|
|
|
fmt::print("The date is {:%Y-%m-%d}.", fmt::localtime(t));
|
2018-03-10 17:25:17 +00:00
|
|
|
|
|
|
|
The format string syntax is described in the documentation of
|
|
|
|
`strftime <http://en.cppreference.com/w/cpp/chrono/c/strftime>`_.
|
|
|
|
|
2020-06-25 13:57:23 +00:00
|
|
|
.. _compile-api:
|
|
|
|
|
|
|
|
Format string compilation
|
|
|
|
=========================
|
|
|
|
|
2020-06-25 18:29:49 +00:00
|
|
|
``fmt/compile.h`` provides format string compilation support. Format strings
|
|
|
|
are parsed at compile time and converted into efficient formatting code. 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 13:57:23 +00:00
|
|
|
|
|
|
|
.. doxygendefine:: FMT_COMPILE
|
|
|
|
|
2018-03-10 17:25:17 +00:00
|
|
|
.. _ostream-api:
|
|
|
|
|
2019-05-18 15:56:49 +00:00
|
|
|
``std::ostream`` Support
|
2018-03-10 17:25:17 +00: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 18:15:16 +00:00
|
|
|
friend std::ostream& operator<<(std::ostream& os, const date& d) {
|
2018-03-10 17:25:17 +00: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-10 00:05:34 +00:00
|
|
|
.. doxygenfunction:: print(std::basic_ostream<Char>&, const S&, Args&&...)
|
2018-03-10 17:25:17 +00:00
|
|
|
|
|
|
|
.. _printf-api:
|
|
|
|
|
2019-05-18 15:56:49 +00:00
|
|
|
``printf`` Formatting
|
2018-03-10 17:25:17 +00:00
|
|
|
=====================
|
2014-10-10 15:40:35 +00:00
|
|
|
|
2016-07-20 15:09:14 +00:00
|
|
|
The header ``fmt/printf.h`` provides ``printf``-like formatting functionality.
|
2014-10-10 15:40:35 +00:00
|
|
|
The following functions use `printf format string syntax
|
|
|
|
<http://pubs.opengroup.org/onlinepubs/009695399/functions/fprintf.html>`_ with
|
2016-07-20 15:09:14 +00: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 15:40:35 +00:00
|
|
|
|
2018-10-28 16:28:51 +00:00
|
|
|
.. doxygenfunction:: printf(const S&, const Args&...)
|
2014-10-10 15:40:35 +00:00
|
|
|
|
2018-10-28 16:28:51 +00:00
|
|
|
.. doxygenfunction:: fprintf(std::FILE *, const S&, const Args&...)
|
2015-12-24 15:00:22 +00:00
|
|
|
|
2019-06-05 13:24:18 +00:00
|
|
|
.. doxygenfunction:: fprintf(std::basic_ostream<Char>&, const S&, const Args&...)
|
2016-08-03 15:52:05 +00:00
|
|
|
|
2018-10-28 16:28:51 +00:00
|
|
|
.. doxygenfunction:: sprintf(const S&, const Args&...)
|
2020-07-05 14:07:29 +00: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 14:32:43 +00:00
|
|
|
* Names are defined in the ``fmt`` namespace instead of ``std`` to avoid
|
2020-07-05 14:07:29 +00:00
|
|
|
collisions with standard library implementations.
|
|
|
|
* The ``'L'`` format specifier cannot be combined with presentation specifiers
|
|
|
|
yet.
|
2020-07-05 14:32:43 +00: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 14:07:29 +00:00
|
|
|
* Chrono formatting doesn't support C++20 date types since they are not provided
|
|
|
|
by standard library implementations.
|