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

Function to_lower

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

Source from the content-addressed store, hash-verified

1032constexpr bool is_digit(char x) noexcept { return (x >= '0') & (x <= '9'); }
1033
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');

Callers 1

is_alphaFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected