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

Method isdecimal

numpy/_core/defchararray.py:1207–1217  ·  view source on GitHub ↗

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

(self)

Source from the content-addressed store, hash-verified

1205 return isnumeric(self)
1206
1207 def isdecimal(self):
1208 """
1209 For each element in `self`, return True if there are only
1210 decimal characters in the element.
1211
1212 See Also
1213 --------
1214 char.isdecimal
1215
1216 """
1217 return isdecimal(self)
1218
1219
1220@set_module("numpy.char")

Callers 4

failMethod · 0.80
test_isdecimalMethod · 0.80
test_isdecimal_raisesMethod · 0.80

Calls

no outgoing calls

Tested by 4

failMethod · 0.64
test_isdecimalMethod · 0.64
test_isdecimal_raisesMethod · 0.64