(ch rune)
| 77 | } |
| 78 | |
| 79 | func IsHexDigit(ch rune) bool { |
| 80 | return ch >= '0' && ch <= '9' || ch >= 'A' && ch <= 'F' || ch >= 'a' && ch <= 'f' |
| 81 | } |
| 82 | |
| 83 | func IsASCIILetter(ch rune) bool { |
| 84 | return ch >= 'A' && ch <= 'Z' || ch >= 'a' && ch <= 'z' |
no outgoing calls
no test coverage detected