MCPcopy Create free account
hub / github.com/Segs/Segs / variantListToStringList

Function variantListToStringList

3rd_party/jcon-cpp/src/jcon/string_util.cpp:22–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20}
21
22QStringList variantListToStringList(const QVariantList& l)
23{
24 QStringList res;
25 std::transform(l.begin(), l.end(), std::back_inserter(res),
26 [](const QVariant& v) {
27 return variantToString(v);
28 });
29 return res;
30}
31
32}

Callers 2

logInvokeFunction · 0.85
formatLogMessageMethod · 0.85

Calls 3

variantToStringFunction · 0.85
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected