reduces constant overhead
(&self, text: &str, start: usize)
| 386 | |
| 387 | #[inline(always)] // reduces constant overhead |
| 388 | fn find_at(&self, text: &str, start: usize) -> Option<(usize, usize)> { |
| 389 | self.0.find_at(text.as_bytes(), start) |
| 390 | } |
| 391 | |
| 392 | #[inline(always)] // reduces constant overhead |
| 393 | fn captures_read_at( |
no test coverage detected