From a programing point of view, I have build a function that validates only positive numbers that contain only digits, what I mean by positive numbers is: 1, 2, 3, ... not allowed $+x$, $-x$, $x.y$, $0x$.
Q: What is the best name to give this function to reflect it's purpose, that would be mathematical correct ?
After googling and going trough wikipedia I tougth at isDecimal(), but decimals allows fractional and negative numbers. I thought at isDigit() but this name makes me think that the function accepts only "one" digit. Maibe isPositiveFiniteDecimal() ?
Thank you
Disclaimer: I am not very familiar with mathematical terms, so please accept my apologies if I mixed them up