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