MCPcopy Create free account
hub / github.com/NativeScript/android / is_ascii_digit

Function is_ascii_digit

test-app/runtime/src/main/cpp/ada/ada.cpp:10744–10748  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10742}
10743
10744ada_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
10750ada_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.

Callers 2

set_portMethod · 0.85
generate_pattern_stringFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected