intial commits
parent
dba9f928c0
commit
d4506d51eb
|
@ -0,0 +1,5 @@
|
||||||
|
package lowalpha
|
||||||
|
|
||||||
|
func ByteIs(value byte) bool {
|
||||||
|
return 'a' <= value && value <= 'z'
|
||||||
|
}
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,5 @@
|
||||||
|
package lowalpha
|
||||||
|
|
||||||
|
func RuneIs(value rune) bool {
|
||||||
|
return 'a' <= value && value <= 'z'
|
||||||
|
}
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue