intial commits

master
Charles Iliya Krempeaux 2023-12-07 16:22:01 -08:00
parent dba9f928c0
commit d4506d51eb
4 changed files with 2120 additions and 0 deletions

5
lowalpha/byte.go 100644
View File

@ -0,0 +1,5 @@
package lowalpha
func ByteIs(value byte) bool {
return 'a' <= value && value <= 'z'
}

1055
lowalpha/byte_test.go 100644

File diff suppressed because it is too large Load Diff

5
lowalpha/rune.go 100644
View File

@ -0,0 +1,5 @@
package lowalpha
func RuneIs(value rune) bool {
return 'a' <= value && value <= 'z'
}

1055
lowalpha/rune_test.go 100644

File diff suppressed because it is too large Load Diff