(&self, b: Byte)
| 1554 | /// corresponding byte class. |
| 1555 | #[inline(always)] |
| 1556 | fn byte_class(&self, b: Byte) -> usize { |
| 1557 | match b.as_byte() { |
| 1558 | None => self.num_byte_classes() - 1, |
| 1559 | Some(b) => self.u8_class(b), |
| 1560 | } |
| 1561 | } |
| 1562 | |
| 1563 | /// Like byte_class, but explicitly for u8s. |
| 1564 | #[inline(always)] |
no test coverage detected