6 lines
88 B
Go
6 lines
88 B
Go
|
package lowalpha
|
||
|
|
||
|
func ByteIs(value byte) bool {
|
||
|
return 'a' <= value && value <= 'z'
|
||
|
}
|