|
| basic_writer (Range out, internal::locale_ref loc=internal::locale_ref()) |
|
iterator | out () const |
|
void | write (int value) |
|
void | write (long value) |
|
void | write (long long value) |
|
void | write (unsigned value) |
|
void | write (unsigned long value) |
|
void | write (unsigned long long value) |
|
template<typename T , typename FormatSpec , typename... FormatSpecs> |
std::enable_if< std::is_integral< T >::value, void >::type | write (T value, FormatSpec spec, FormatSpecs...specs) |
|
void | write (double value) |
|
void | write (long double value) |
|
void | write (char value) |
|
void | write (wchar_t value) |
|
void | write (string_view value) |
|
void | write (wstring_view value) |
|
template<typename Char > |
void | write (const Char *s, std::size_t size, const align_spec &spec) |
|
template<typename Char > |
void | write (basic_string_view< Char > s, const format_specs &spec=format_specs()) |
|
template<typename T > |
std::enable_if< std::is_same< T, void >::value >::type | write (const T *p) |
|
template<typename Range>
class fmt::v5::basic_writer< Range >
This template provides operations for formatting and writing data into a character range.
Definition at line 330 of file format.h.