MCPcopy Create free account
hub / github.com/0xShug0/audio.cpp / join_path

Function join_path

src/framework/io/yaml.cpp:42–50  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

40}
41
42std::string join_path(std::string_view prefix, std::string_view key) {
43 if (prefix.empty()) {
44 return std::string(key);
45 }
46 std::string path(prefix);
47 path += '.';
48 path += key;
49 return path;
50}
51
52void flatten_node(
53 yaml_document_t & document,

Callers 1

flatten_nodeFunction · 0.85

Calls 2

stringFunction · 0.50
emptyMethod · 0.45

Tested by

no test coverage detected