MCPcopy Create free account
hub / github.com/asmuth/clip / toStringVImpl

Method toStringVImpl

src/utils/stringutil_impl.h:22–28  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20
21template <typename H, typename... T>
22void StringUtil::toStringVImpl(
23 std::vector<std::string>* target,
24 H value,
25 T... values) {
26 target->emplace_back(toString(value));
27 toStringVImpl(target, values...);
28}
29
30template <typename... T>
31std::vector<std::string> StringUtil::toStringV(T... values) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected