6 lines
85 B
Go
6 lines
85 B
Go
|
package digit
|
||
|
|
||
|
func ByteIs(value byte) bool {
|
||
|
return '0' <= value && value <= '9'
|
||
|
}
|