CppCommon 1.0.5.0
C++ Common Library
|
Format string definition. More...
#include <fmt/args.h>
#include <fmt/format.h>
#include <fmt/ostream.h>
#include <fmt/xchar.h>
#include "format.inl"
Go to the source code of this file.
Namespaces | |
namespace | CppCommon |
C++ Common project definitions. | |
Functions | |
template<typename... T> | |
std::string | CppCommon::format (fmt::format_string< T... > pattern, T &&... args) |
Format string. | |
template<typename... T> | |
std::wstring | CppCommon::format (fmt::wformat_string< T... > pattern, T &&... args) |
Format wide string. | |
template<typename... T> | |
void | CppCommon::print (fmt::format_string< T... > pattern, T &&... args) |
Format string and print it into the std::cout. | |
template<typename... T> | |
void | CppCommon::print (fmt::wformat_string< T... > pattern, T &&... args) |
Format wide string and print it into the std::cout. | |
template<typename TOutputStream , typename... T> | |
void | CppCommon::print (TOutputStream &stream, fmt::format_string< T... > pattern, T &&... args) |
Format string and print it into the given std::ostream. | |
template<typename TOutputStream , typename... T> | |
void | CppCommon::print (TOutputStream &stream, fmt::wformat_string< T... > pattern, T &&... args) |
Format wide string and print it into the given std::ostream. | |