| 52 | /// A backtracking matching engine. |
| 53 | #[derive(Debug)] |
| 54 | pub struct Bounded<'a, 'm, 'r, 's, I> { |
| 55 | prog: &'r Program, |
| 56 | input: I, |
| 57 | matches: &'m mut [bool], |
| 58 | slots: &'s mut [Slot], |
| 59 | m: &'a mut Cache, |
| 60 | } |
| 61 | |
| 62 | /// Shared cached state between multiple invocations of a backtracking engine |
| 63 | /// in the same thread. |
no outgoing calls
no test coverage detected