MCPcopy Create free account
hub / github.com/numpy/numpy / NumPyOS_ascii_isdigit

Function NumPyOS_ascii_isdigit

numpy/core/src/common/numpyos.c:372–376  ·  view source on GitHub ↗

* NumPyOS_ascii_isdigit: * * Same as isdigit under C locale */

Source from the content-addressed store, hash-verified

370 * Same as isdigit under C locale
371 */
372static int
373NumPyOS_ascii_isdigit(char c)
374{
375 return (c >= '0' && c <= '9');
376}
377
378
379/*

Callers 2

NumPyOS_ascii_isalnumFunction · 0.85
read_numberlike_stringFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected