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

Function is_alpha

test-app/runtime/src/main/cpp/ada/ada.h:1036–1038  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1034constexpr char to_lower(char x) noexcept { return (x | 0x20); }
1035
1036constexpr bool is_alpha(char x) noexcept {
1037 return (to_lower(x) >= 'a') && (to_lower(x) <= 'z');
1038}
1039
1040constexpr bool is_windows_drive_letter(std::string_view input) noexcept {
1041 return input.size() >= 2 &&

Callers 4

is_windows_drive_letterFunction · 0.85
set_protocolMethod · 0.85
parse_url_implFunction · 0.85

Calls 1

to_lowerFunction · 0.85

Tested by

no test coverage detected