| 10737 | } |
| 10738 | |
| 10739 | ada_really_inline constexpr bool is_ascii_hex_digit(const char c) noexcept { |
| 10740 | return (c >= '0' && c <= '9') || (c >= 'A' && c <= 'F') || |
| 10741 | (c >= 'a' && c <= 'f'); |
| 10742 | } |
| 10743 | |
| 10744 | ada_really_inline constexpr bool is_ascii_digit(const char c) noexcept { |
| 10745 | // An ASCII digit is a code point in the range U+0030 (0) to U+0039 (9), |
no outgoing calls
no test coverage detected