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

Function is_ascii_letter_or_digit

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

Source from the content-addressed store, hash-verified

10405}
10406
10407constexpr bool is_ascii_letter_or_digit(char32_t c) noexcept {
10408 return (c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z') ||
10409 (c >= '0' && c <= '9');
10410}
10411
10412bool valid_name_code_point(char32_t code_point, bool first) {
10413 // https://tc39.es/ecma262/#prod-IdentifierStart

Callers 1

valid_name_code_pointFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected