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

Function is_ascii_letter

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

Source from the content-addressed store, hash-verified

10401
10402namespace ada::idna {
10403constexpr bool is_ascii_letter(char32_t c) noexcept {
10404 return (c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z');
10405}
10406
10407constexpr bool is_ascii_letter_or_digit(char32_t c) noexcept {
10408 return (c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z') ||

Callers 1

valid_name_code_pointFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected