Open
Description
Summary
Some util functions that are defined for char
s are missing for Rune
s.
isAsciiDigit
is one of them.
Description
func isAsciiDigit*(r: Rune): bool =
ord(r) >= ord('0') and ord(r) <= ord('9')
Alternatives
No response
Examples
No response
Backwards Compatibility
No response
Links
No response