Function join¶
function join(T) meta¶
template <typename T>
inline std::string join(T x) Convert a single value to a string (terminator of join ).
| T | Type of the value. |
| x | Value to convert. |
String representation of x. |
Fully qualified name: kfr::join(T)
Declared at meta/string.hpp:663
Function join¶
function join(T, U, Ts...) meta¶
template <typename T, typename U, typename... Ts>
inline std::string join(T x, U y, Ts... rest) Join values into a comma-separated string of the form {x}, {y}, {rest...}".
| T | Type of the first value. |
| U | Type of the second value. |
| Ts | Types of the remaining values. |
| x | First value. |
| y | Second value. |
| rest | Remaining values. |
| Comma-separated string. |
Fully qualified name: kfr::join(T, U, Ts...)
Declared at meta/string.hpp:680
This file was generated by cxxdox, a C++ documentation generator based on MkDocs Material and libclang.