(
&self,
locs: &mut CaptureLocations,
text: &'t str,
start: usize,
)
| 701 | /// alias. |
| 702 | #[doc(hidden)] |
| 703 | pub fn read_captures_at<'t>( |
| 704 | &self, |
| 705 | locs: &mut CaptureLocations, |
| 706 | text: &'t str, |
| 707 | start: usize, |
| 708 | ) -> Option<Match<'t>> { |
| 709 | self.captures_read_at(locs, text, start) |
| 710 | } |
| 711 | } |
| 712 | |
| 713 | /// Auxiliary methods. |
nothing calls this directly
no test coverage detected