| 1978 | }; |
| 1979 | |
| 1980 | template <typename Char> FMT_CONSTEXPR bool is_name_start(Char c) { |
| 1981 | return ('a' <= c && c <= 'z') || ('A' <= c && c <= 'Z') || '_' == c; |
| 1982 | } |
| 1983 | |
| 1984 | // Parses the range [begin, end) as an unsigned integer. This function assumes |
| 1985 | // that the range is non-empty and the first character is a digit. |