initial commits

master
Charles Iliya Krempeaux 2023-12-07 20:39:06 -08:00
parent 407767aa92
commit 6390fce105
4 changed files with 2120 additions and 0 deletions

5
digit/byte.go 100644
View File

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

1055
digit/byte_test.go 100644

File diff suppressed because it is too large Load Diff

5
digit/rune.go 100644
View File

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

1055
digit/rune_test.go 100644

File diff suppressed because it is too large Load Diff