Tinker9 70bd052 (Thu Nov 9 12:11:35 2023 -0800)
|
Functions | |
template<class F , class... Ts> | |
void | tinker::print (std::FILE *out, const F &f, Ts &&... args) |
Formatted output. More... | |
template<class F > | |
void | tinker::print (std::FILE *out, const F &f) |
Formatted output. More... | |
template<class F , class... Ts> | |
std::string | tinker::format (const F &f, Ts &&... args) |
Writes the formatted output to an std::string object. More... | |
std::string | tinker::operator* (size_t k, std::string str) |
Duplicates then concatenates multiple copies of string. More... | |
std::string | tinker::operator* (std::string str, size_t k) |
Duplicates then concatenate multiple copies of string. More... | |
std::string | tinker::operator""_s (const char *s, size_t len) |
Uses _s suffix to convert a const char* to std::string . More... | |
std::string tinker::format | ( | const F & | f, |
Ts &&... | args | ||
) |
Writes the formatted output to an std::string
object.
f | Format string. |
args | Values to be printed out. |
std::string
output.
|
inline |
Uses _s
suffix to convert a const char*
to std::string
.
|
inline |
Duplicates then concatenates multiple copies of string.
|
inline |
Duplicates then concatenate multiple copies of string.
void tinker::print | ( | std::FILE * | out, |
const F & | f | ||
) |
Formatted output.
out | A FILE pointer. |
f | Message to be printed. |
void tinker::print | ( | std::FILE * | out, |
const F & | f, | ||
Ts &&... | args | ||
) |
Formatted output.
out | A FILE pointer. |
f | Format string. |
args | Values to be printed. |