#include <fstream>
#include "format.h"
Go to the source code of this file.
|
template<typename Char , typename T > |
void | detail::format_value (buffer< Char > &buf, const T &value) |
|
template<typename... T> |
FMT_EXPORT void | print (std::ostream &os, format_string< T... > fmt, T &&... args) |
|
template<typename... Args> |
FMT_EXPORT void | print (std::wostream &os, basic_format_string< wchar_t, type_identity_t< Args >... > fmt, Args &&... args) |
|
template<typename... T> |
FMT_EXPORT void | println (std::ostream &os, format_string< T... > fmt, T &&... args) |
|
template<typename... Args> |
FMT_EXPORT void | println (std::wostream &os, basic_format_string< wchar_t, type_identity_t< Args >... > fmt, Args &&... args) |
|
template<typename T > |
constexpr auto | streamed (const T &value) -> detail::streamed_view< T > |
|
template<typename Char > |
FMT_EXPORT void | vprint (std::basic_ostream< Char > &os, basic_string_view< type_identity_t< Char >> format_str, basic_format_args< buffer_context< type_identity_t< Char >>> args) |
|
void | detail::vprint_directly (std::ostream &os, string_view format_str, format_args args) |
|
template<typename Char > |
void | detail::write_buffer (std::basic_ostream< Char > &os, buffer< Char > &buf) |
|
auto | detail::write_ostream_unicode (std::ostream &os, fmt::string_view data) -> bool |
|
auto | detail::write_ostream_unicode (std::wostream &, fmt::basic_string_view< wchar_t >) -> bool |
|
◆ ostream_formatter
◆ print() [1/2]
\rst Prints formatted data to the stream os.
Example**::
fmt::print(cerr, "Don't {}!", "panic"); \endrst
Definition at line 214 of file ostream.h.
◆ print() [2/2]
template<typename... Args>
◆ println() [1/2]
◆ println() [2/2]
template<typename... Args>
◆ streamed()
\rst Returns a view that formats value
via an ostream operator<<
.
Example**::
fmt::print("Current thread id: {}\n", fmt::streamed(std::this_thread::get_id())); \endrst
Definition at line 179 of file ostream.h.
◆ vprint()