// Package ascii provides data and functions to test some properties of // ASCII code points.
package ascii // IsDigit reports whether the rune is a decimal digit. func ( rune) bool { return >= '0' && <= '9' } // IsLatinLetter reports whether the rune is ASCII latin letter. func ( rune) bool { return ( >= 'a' && <= 'z') || ( >= 'A' && <= 'Z') } // IsLatinLower reports whether the rune is lower ASCII latin letter. func ( rune) bool { |= 0x20 return 'a' <= && <= 'z' }