Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/numpy/numpy
/ _is_alnum_underscore
Function
_is_alnum_underscore
numpy/core/src/umath/ufunc_object.c:566–570 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
564
}
565
566
static int
567
_is_alnum_underscore(char ch)
568
{
569
return _is_alpha_underscore(ch) || (ch >=
'0'
&& ch <=
'9'
);
570
}
571
572
/*
573
* Convert a string into a number
Callers
2
_get_end_of_name
Function · 0.85
_is_same_name
Function · 0.85
Calls
1
_is_alpha_underscore
Function · 0.85
Tested by
no test coverage detected