For each element in `self`, return True if there are only decimal characters in the element. See Also -------- char.isdecimal
(self)
| 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") |
no outgoing calls