Returns whether the character is a digit.
pub fn isDigit(c: u8) bool
pub fn isDigit(c: u8) bool { return switch (c) { '0'...'9' => true, else => false, }; }