MCPcopy Create free account
hub / github.com/apache/fory / is_upper_ascii

Function is_upper_ascii

cpp/fory/util/string_util.h:198–198  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

196namespace detail {
197
198constexpr bool is_upper_ascii(char c) { return c >= 'A' && c <= 'Z'; }
199
200constexpr bool is_lower_ascii(char c) { return c >= 'a' && c <= 'z'; }
201

Callers 3

to_lower_asciiFunction · 0.85
needs_snake_separatorFunction · 0.85
to_snake_caseFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected