#include "Poco/Foundation.h"
#include "Poco/Any.h"
#include <vector>
#include <type_traits>
Go to the source code of this file.
|
std::string Foundation_API | Poco::format (const std::string &fmt, const Any &value) |
|
void Foundation_API | Poco::format (std::string &result, const char *fmt, const std::vector< Any > &values) |
|
void Foundation_API | Poco::format (std::string &result, const std::string &fmt, const std::vector< Any > &values) |
|
template<typename T , typename... Args> |
void | Poco::format (std::string &result, const std::string &fmt, T arg1, Args... args) |
| Appends the formatted string to result.
|
|
template<typename T , typename... Args> |
void | Poco::format (std::string &result, const char *fmt, T arg1, Args... args) |
| Appends the formatted string to result.
|
|
template<typename T , typename... Args> |
std::string | Poco::format (const std::string &fmt, T arg1, Args... args) |
| Returns the formatted string.
|
|
template<typename T , typename... Args> |
std::string | Poco::format (const char *fmt, T arg1, Args... args) |
| Returns the formatted string.
|
|