| 445 | } |
| 446 | |
| 447 | [[nodiscard]] static string __parse_letters(istream& __input) { |
| 448 | string __result = __parse_string(__input); |
| 449 | // Canonicalize "-" to "" since they are equivalent in the specification. |
| 450 | return __result != "-" ? __result : ""; |
| 451 | } |
| 452 | |
| 453 | [[nodiscard]] static __tz::__continuation::__rules_t __parse_rules(istream& __input) { |
| 454 | int __c = __input.peek(); |
no test coverage detected