(c rune)
| 209 | } |
| 210 | |
| 211 | func isHexadecimal(c rune) bool { |
| 212 | return '0' <= c && c <= '9' || 'a' <= c && c <= 'f' || 'A' <= c && c <= 'F' |
| 213 | } |
| 214 | |
| 215 | func (s *scanner) readHexNumber(x float64) (n float64, c rune, i int) { |
| 216 | if c, n = s.current, x; !isHexadecimal(c) { |
no outgoing calls
no test coverage detected
searching dependent graphs…