intial commits
parent
b0221c930d
commit
dba9f928c0
|
@ -0,0 +1,5 @@
|
|||
package upalpha
|
||||
|
||||
func ByteIs(value byte) bool {
|
||||
return 'A' <= value && value <= 'Z'
|
||||
}
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,5 @@
|
|||
package upalpha
|
||||
|
||||
func RuneIs(value rune) bool {
|
||||
return 'A' <= value && value <= 'Z'
|
||||
}
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue