* Create an unordered multi-line list of items. */
| 227 | * Create an unordered multi-line list of items. |
| 228 | */ |
| 229 | inline std::string MakeUnorderedList(const std::vector<std::string>& items) |
| 230 | { |
| 231 | return Join(items, "\n", [](const std::string& item) { return "- " + item; }); |
| 232 | } |
| 233 | |
| 234 | /** |
| 235 | * Check if a string does not contain any embedded NUL (\0) characters |
no test coverage detected