MCPcopy Create free account
hub / github.com/bmorcelli/Launcher / encodeFatLabels

Function encodeFatLabels

src/app_registry.cpp:74–82  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

72}
73
74String encodeFatLabels(const std::vector<String> &labels) {
75 String out;
76 for (const String &label : labels) {
77 if (label.isEmpty()) continue;
78 if (!out.isEmpty()) out += ",";
79 out += label;
80 }
81 return out;
82}
83
84std::vector<String> loadFatLabelsForLabel(const char *label) {
85 std::vector<String> labels;

Callers 2

saveFatLabelsForLabelFunction · 0.85
launcherSaveAppMetadataFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected