reduces constant overhead
(&self, text: &[u8], start: usize)
| 744 | /// Finds the end of the shortest match using only the DFA. |
| 745 | #[inline(always)] // reduces constant overhead |
| 746 | fn shortest_dfa(&self, text: &[u8], start: usize) -> dfa::Result<usize> { |
| 747 | dfa::Fsm::forward(&self.ro.dfa, self.cache, true, text, start) |
| 748 | } |
| 749 | |
| 750 | /// Finds the end of the shortest match using only the DFA by scanning for |
| 751 | /// suffix literals. |
no outgoing calls
no test coverage detected