Combine find_prefixes and extract_suffixes.
(root: Path, prefix: str)
| 189 | |
| 190 | |
| 191 | def find_suffixes(root: Path, prefix: str) -> Iterator[str]: |
| 192 | """Combine find_prefixes and extract_suffixes.""" |
| 193 | return extract_suffixes(find_prefixed(root, prefix), prefix) |
| 194 | |
| 195 | |
| 196 | def parse_num(maybe_num: str) -> int: |
no test coverage detected