(ch rune)
| 73 | } |
| 74 | |
| 75 | func IsOctalDigit(ch rune) bool { |
| 76 | return ch >= '0' && ch <= '7' |
| 77 | } |
| 78 | |
| 79 | func IsHexDigit(ch rune) bool { |
| 80 | return ch >= '0' && ch <= '9' || ch >= 'A' && ch <= 'F' || ch >= 'a' && ch <= 'f' |
no outgoing calls
no test coverage detected