intial commits

master
Charles Iliya Krempeaux 2023-12-07 16:22:30 -08:00
parent d4506d51eb
commit 150ac29d71
4 changed files with 2130 additions and 0 deletions

10
alpha/byte.go 100644
View File

@ -0,0 +1,10 @@
package alpha
import (
"sourcecode.social/reiver/go-rfc2396/lowalpha"
"sourcecode.social/reiver/go-rfc2396/upalpha"
)
func ByteIs(value byte) bool {
return lowalpha.ByteIs(value) || upalpha.ByteIs(value)
}

1055
alpha/byte_test.go 100644

File diff suppressed because it is too large Load Diff

10
alpha/rune.go 100644
View File

@ -0,0 +1,10 @@
package alpha
import (
"sourcecode.social/reiver/go-rfc2396/lowalpha"
"sourcecode.social/reiver/go-rfc2396/upalpha"
)
func RuneIs(value rune) bool {
return lowalpha.RuneIs(value) || upalpha.RuneIs(value)
}

1055
alpha/rune_test.go 100644

File diff suppressed because it is too large Load Diff