18#ifndef DUMUX_IO_FORMAT_HH
19#define DUMUX_IO_FORMAT_HH
21#if __has_include(<format>)
25#include <dumux/io/format/fmt/format.h>
26#include <dumux/io/format/fmt/ranges.h>
35using std::format_to_n;
36using std::formatted_size;
39using std::make_format_args;
42using Dumux::Detail::fmt::format;
43using Dumux::Detail::fmt::format_to;
44using Dumux::Detail::fmt::format_to_n;
45using Dumux::Detail::fmt::formatted_size;
46using Dumux::Detail::fmt::vformat;
47using Dumux::Detail::fmt::vformat_to;
48using Dumux::Detail::fmt::make_format_args;
Formatting tools in the style of std::format (C++20)
Definition: format.hh:29