(
&self,
locs: &mut CaptureLocations,
text: &'t [u8],
start: usize,
)
| 644 | /// alias. |
| 645 | #[doc(hidden)] |
| 646 | pub fn read_captures_at<'t>( |
| 647 | &self, |
| 648 | locs: &mut CaptureLocations, |
| 649 | text: &'t [u8], |
| 650 | start: usize, |
| 651 | ) -> Option<Match<'t>> { |
| 652 | self.captures_read_at(locs, text, start) |
| 653 | } |
| 654 | } |
| 655 | |
| 656 | /// Auxiliary methods. |
nothing calls this directly
no test coverage detected