intial commits

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

5
upalpha/byte.go 100644
View File

@ -0,0 +1,5 @@
package upalpha
func ByteIs(value byte) bool {
return 'A' <= value && value <= 'Z'
}

1055
upalpha/byte_test.go 100644

File diff suppressed because it is too large Load Diff

5
upalpha/rune.go 100644
View File

@ -0,0 +1,5 @@
package upalpha
func RuneIs(value rune) bool {
return 'A' <= value && value <= 'Z'
}

1055
upalpha/rune_test.go 100644

File diff suppressed because it is too large Load Diff