MCPcopy Create free account
hub / github.com/RedisGraph/RedisGraph / reflect_list

Function reflect_list

deps/GraphBLAS/CUDA/jitify.hpp:988–999  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

986}
987
988inline std::string reflect_list(jitify::detail::vector<std::string> const& args,
989 std::string opener = "",
990 std::string closer = "") {
991 std::stringstream ss;
992 ss << opener;
993 for (int i = 0; i < (int)args.size(); ++i) {
994 if (i > 0) ss << ",";
995 ss << args[i];
996 }
997 ss << closer;
998 return ss.str();
999}
1000
1001// Template instantiation reflection
1002// inline std::string reflect_template(std::vector<std::string> const& args) {

Callers 7

reflect_templateFunction · 0.85
launchMethod · 0.85
printMethod · 0.85
Kernel_implMethod · 0.85
Program_implMethod · 0.85
parallel_forFunction · 0.85
launchMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected