-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Open
Labels
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
juancarlospaco