HDK
|
#include <algorithm>
#include <cctype>
#include <cerrno>
#include <climits>
#include <cmath>
#include <cstdarg>
#include <cstring>
#include <cwchar>
#include <exception>
#include <locale>
#include "format.h"
Go to the source code of this file.
Classes | |
struct | detail::bits< T > |
struct | detail::boundaries |
class | detail::fp |
struct | detail::accumulator |
class | detail::bigint |
struct | detail::fixed_handler |
struct | detail::uint128_wrapper |
struct | detail::dragonbox::divtest_table_entry< T > |
struct | detail::dragonbox::cache_accessor< T > |
struct | detail::dragonbox::cache_accessor< float > |
struct | detail::dragonbox::cache_accessor< double > |
struct | formatter< detail::bigint > |
Namespaces | |
detail | |
detail::digits | |
detail::dragonbox | |
Macros | |
#define | FMT_SNPRINTF snprintf |
#define FMT_SNPRINTF snprintf |
Definition at line 44 of file format-inl.h.
FMT_FUNC void format_system_error | ( | detail::buffer< char > & | out, |
int | error_code, | ||
const char * | message | ||
) |
Formats an error message for an error returned by an operating system or a language runtime, for example a file opening error, and writes it to out. The format is the same as the one used by std::system_error(ec, message)
where ec
is std::error_code(error_code, std::generic_category()})
. It is implementation-defined but normally looks like:
.. parsed-literal:: <message>*: *<system-message>*
where *<message>* is the passed message and *<system-message>* is the system message corresponding to the error code. error_code* is a system error code as given by errno
.
Definition at line 2542 of file format-inl.h.
Definition at line 2557 of file format-inl.h.
FMT_FUNC std::string vformat | ( | string_view | fmt, |
format_args | args | ||
) |
Definition at line 2562 of file format-inl.h.
FMT_FUNC void vprint | ( | std::FILE * | f, |
string_view | format_str, | ||
format_args | args | ||
) |
Definition at line 2598 of file format-inl.h.
FMT_FUNC void vprint | ( | string_view | format_str, |
format_args | args | ||
) |
Definition at line 2615 of file format-inl.h.
FMT_FUNC std::system_error vsystem_error | ( | int | error_code, |
string_view | format_str, | ||
format_args | args | ||
) |
Definition at line 132 of file format-inl.h.