MCPcopy 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
560static int
561_is_alpha_underscore(char ch)
562{
563 return (ch >= 'A' && ch <= 'Z') || (ch >= 'a' && ch <= 'z') || ch == '_';
564}
565
566static int
567_is_alnum_underscore(char ch)

Callers 3

_is_alnum_underscoreFunction · 0.85
_get_sizeFunction · 0.85
_parse_signatureFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected