Source File
ascii.go
Belonging Package
github.com/gotd/td/internal/ascii
// 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'
}
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |