go-rfc2396/lowalpha/byte.go

6 lines
88 B
Go

package lowalpha
func ByteIs(value byte) bool {
return 'a' <= value && value <= 'z'
}