(&self, b: u8)
| 1563 | /// Like byte_class, but explicitly for u8s. |
| 1564 | #[inline(always)] |
| 1565 | fn u8_class(&self, b: u8) -> usize { |
| 1566 | self.prog.byte_classes[b as usize] as usize |
| 1567 | } |
| 1568 | |
| 1569 | /// Returns true if the DFA should continue searching past the first match. |
| 1570 | /// |