MCPcopy 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
566static 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_nameFunction · 0.85
_is_same_nameFunction · 0.85

Calls 1

_is_alpha_underscoreFunction · 0.85

Tested by

no test coverage detected