Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/numpy/numpy
/ _is_alpha_underscore
Function
_is_alpha_underscore
numpy/core/src/umath/ufunc_object.c:560–564 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
558
}
559
560
static int
561
_is_alpha_underscore(char ch)
562
{
563
return (ch >=
'A'
&& ch <=
'Z'
) || (ch >=
'a'
&& ch <=
'z'
) || ch ==
'_'
;
564
}
565
566
static int
567
_is_alnum_underscore(char ch)
Callers
3
_is_alnum_underscore
Function · 0.85
_get_size
Function · 0.85
_parse_signature
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected