Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
196
namespace detail {
197
198
constexpr bool is_upper_ascii(char c) { return c >=
'A'
&& c <=
'Z'
; }
199
200
constexpr bool is_lower_ascii(char c) { return c >=
'a'
&& c <=
'z'
; }
201
Callers
3
to_lower_ascii
Function · 0.85
needs_snake_separator
Function · 0.85
to_snake_case
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected