CppCommon 1.0.5.0
C++ Common Library
|
Format string inline implementation. More...
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. | |
Format string inline implementation.
Definition in file format.inl.