(input: &str)
| 284 | } |
| 285 | |
| 286 | fn parse_range(input: &str) -> anyhow::Result<Vec<ResourceIndex>> { |
| 287 | let parser = terminated(p_cpu_ranges, opt(newline)); |
| 288 | consume_all(parser, input) |
| 289 | } |
| 290 | |
| 291 | fn parse_comma_separated_values(input: &str) -> anyhow::Result<Vec<String>> { |
| 292 | let any_except_comma = map(many1(satisfy(|c| c != ',')), |items| { |
no test coverage detected