| 72 | } |
| 73 | |
| 74 | String 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 | |
| 84 | std::vector<String> loadFatLabelsForLabel(const char *label) { |
| 85 | std::vector<String> labels; |
no outgoing calls
no test coverage detected