| 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), |
| 10746 | // inclusive. |
| 10747 | return (c >= '0' && c <= '9'); |
| 10748 | } |
| 10749 | |
| 10750 | ada_really_inline constexpr bool is_ascii(const char32_t c) noexcept { |
| 10751 | // If code point is between U+0000 and U+007F inclusive, then return true. |
no outgoing calls
no test coverage detected