#include <cstdio>
#include <system_error>
#include <utility>
#include <fmt/core.h>
 
Go to the source code of this file.
 | 
| namespace   | wpi | 
|   | Foonathan namespace. 
  | 
|   | 
 | 
| template<typename... T>  | 
| void  | wpi::print (fmt::format_string< T... > fmt, T &&... args) | 
|   | Wrapper around fmt::print() that squelches write failure exceptions.  
  | 
|   | 
| template<typename... T>  | 
| void  | wpi::print (std::FILE *f, fmt::format_string< T... > fmt, T &&... args) | 
|   | Wrapper around fmt::print() that squelches write failure exceptions.  
  | 
|   | 
| template<typename... T>  | 
| void  | wpi::println (fmt::format_string< T... > fmt, T &&... args) | 
|   | Wrapper around fmt::println() that squelches write failure exceptions.  
  | 
|   | 
| template<typename... T>  | 
| void  | wpi::println (std::FILE *f, fmt::format_string< T... > fmt, T &&... args) | 
|   | Wrapper around fmt::println() that squelches write failure exceptions.  
  | 
|   |