intial commits

master
Charles Iliya Krempeaux 2023-12-07 16:30:28 -08:00
parent 3d2fc6f837
commit 4b22917a09
4 changed files with 2130 additions and 0 deletions

10
mark/byte.go 100644
View File

@ -0,0 +1,10 @@
package mark
func ByteIs(value byte) bool {
switch value {
case '-' , '_' , '.' , '!' , '~' , '*' , '\'' , '(' , ')':
return true
default:
return false
}
}

1055
mark/byte_test.go 100644

File diff suppressed because it is too large Load Diff

10
mark/rune.go 100644
View File

@ -0,0 +1,10 @@
package mark
func RuneIs(value rune) bool {
switch value {
case '-' , '_' , '.' , '!' , '~' , '*' , '\'' , '(' , ')':
return true
default:
return false
}
}

1055
mark/rune_test.go 100644

File diff suppressed because it is too large Load Diff