(&mut self)
| 84 | self.scan_while(|b| b.is_ascii_hexdigit() || b == b'_'); |
| 85 | } |
| 86 | fn scan_oct_digits(&mut self) { |
| 87 | self.scan_while(|b| matches!(b, b'0'..=b'7' | b'_')); |
| 88 | } |
| 89 | fn scan_bin_digits(&mut self) { |
| 90 | self.scan_while(|b| matches!(b, b'0' | b'1' | b'_')); |
| 91 | } |