Skip to content

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 ).

Template parameters
T Type of the value.
Parameters
x Value to convert.
Returns
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...}".

Template parameters
T Type of the first value.
U Type of the second value.
Ts Types of the remaining values.
Parameters
x First value.
y Second value.
rest Remaining values.
Returns
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.