MCPcopy Index your code
hub / github.com/numpy/numpy / isnumeric

Method isnumeric

numpy/_core/defchararray.py:1195–1205  ·  view source on GitHub ↗

For each element in `self`, return True if there are only numeric characters in the element. See Also -------- char.isnumeric

(self)

Source from the content-addressed store, hash-verified

1193 return asarray(zfill(self, width))
1194
1195 def isnumeric(self):
1196 """
1197 For each element in `self`, return True if there are only
1198 numeric characters in the element.
1199
1200 See Also
1201 --------
1202 char.isnumeric
1203
1204 """
1205 return isnumeric(self)
1206
1207 def isdecimal(self):
1208 """

Callers 4

failMethod · 0.80
test_isnumericMethod · 0.80
test_isnumeric_bytesMethod · 0.80

Calls

no outgoing calls

Tested by 4

failMethod · 0.64
test_isnumericMethod · 0.64
test_isnumeric_bytesMethod · 0.64