isDigit returns true if the rune is a digit.
(ch rune)
| 518 | |
| 519 | // isDigit returns true if the rune is a digit. |
| 520 | func isDigit(ch rune) bool { return ch >= '0' && ch <= '9' } |
| 521 | |
| 522 | // isIdentChar returns true if the rune can be used in an unquoted identifier. $ rune is for special PE section names (e.g. .debug$ | .tls$) |
| 523 | func isIdentChar(ch rune) bool { |
no outgoing calls
no test coverage detected