()
| 50 | } |
| 51 | |
| 52 | fn parse_array_inner() -> impl CharParser<IntArray> { |
| 53 | all_consuming(parse_ranges_without_overlap()) |
| 54 | } |
| 55 | |
| 56 | /// Parses integer ranges separated by commas. |
| 57 | /// Makes sure that the ranges do not overlap. |
no test coverage detected