| 247 | } |
| 248 | |
| 249 | std::string |
| 250 | join_path_list(const std::vector<std::filesystem::path>& path_list) |
| 251 | { |
| 252 | return join(path_list, k_path_delimiter); |
| 253 | } |
| 254 | |
| 255 | tl::expected<Bytes, std::string> |
| 256 | parse_base16(std::string_view hex_string) |
no test coverage detected