Returns true if rune represents a digit.
true
rune
The definition of digit matches the Unicode 0x3? range of Western European digits.
0x3?
bool isDigit(int rune) => rune ^ 0x30 <= 9;