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

Function is_ascii_hex_digit

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

Source from the content-addressed store, hash-verified

10737}
10738
10739ada_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
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),

Callers 3

percent_decodeFunction · 0.85
parse_ipv6Method · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected