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

Function is_alnum_plus

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

Source from the content-addressed store, hash-verified

10730}();
10731
10732ada_really_inline constexpr bool is_alnum_plus(const char c) noexcept {
10733 return is_alnum_plus_table[uint8_t(c)];
10734 // A table is almost surely much faster than the
10735 // following under most compilers: return
10736 // return (std::isalnum(c) || c == '+' || c == '-' || c == '.');
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') ||

Callers 1

parse_url_implFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected