#include <fstream>
#include "format.h"
 
Go to the source code of this file.
 | 
| bool  | detail::write_ostream_unicode (std::ostream &os, fmt::string_view data) | 
|   | 
| bool  | detail::write_ostream_unicode (std::wostream &, fmt::basic_string_view< wchar_t >) | 
|   | 
| template<typename Char >  | 
| void  | detail::write_buffer (std::basic_ostream< Char > &os, buffer< Char > &buf) | 
|   | 
| template<typename Char , typename T >  | 
| void  | detail::format_value (buffer< Char > &buf, const T &value, locale_ref loc=locale_ref()) | 
|   | 
| template<typename T >  | 
| auto  | streamed (const T &value) -> detail::streamed_view< T > | 
|   | 
| void  | detail::vprint_directly (std::ostream &os, string_view format_str, format_args args) | 
|   | 
| template<typename Char >  | 
| FMT_MODULE_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) | 
|   | 
| template<typename... T>  | 
| FMT_MODULE_EXPORT void  | print (std::ostream &os, format_string< T...> fmt, T &&...args) | 
|   | 
| template<typename... Args>  | 
| FMT_MODULE_EXPORT void  | print (std::wostream &os, basic_format_string< wchar_t, type_identity_t< Args >...> fmt, Args &&...args) | 
|   | 
| template<typename... T>  | 
| FMT_MODULE_EXPORT void  | println (std::ostream &os, format_string< T...> fmt, T &&...args) | 
|   | 
| template<typename... Args>  | 
| FMT_MODULE_EXPORT void  | println (std::wostream &os, basic_format_string< wchar_t, type_identity_t< Args >...> fmt, Args &&...args) | 
|   | 
Prints formatted data to the stream os.
Example**::
fmt::print(cerr, "Don't {}!", "panic");  
Definition at line 178 of file ostream.h.
 
 
template<typename... Args> 
      
 
 
template<typename... Args> 
      
 
 
Returns a view that formats value via an ostream operator<<.
Example**::
fmt::print("Current thread id: {}\n", fmt::streamed(std::this_thread::get_id()));  
Definition at line 143 of file ostream.h.