For each element in `self`, return True if there are only decimal characters in the element. See Also -------- char.isdecimal
(self)
| 2715 | return isnumeric(self) |
| 2716 | |
| 2717 | def isdecimal(self): |
| 2718 | """ |
| 2719 | For each element in `self`, return True if there are only |
| 2720 | decimal characters in the element. |
| 2721 | |
| 2722 | See Also |
| 2723 | -------- |
| 2724 | char.isdecimal |
| 2725 | |
| 2726 | """ |
| 2727 | return isdecimal(self) |
| 2728 | |
| 2729 | |
| 2730 | @set_module("numpy.char") |