(&mut self)
| 700 | type Item = Match<'t>; |
| 701 | |
| 702 | fn next(&mut self) -> Option<Match<'t>> { |
| 703 | let text = self.0.text(); |
| 704 | self.0.next().map(|(s, e)| Match::new(text, s, e)) |
| 705 | } |
| 706 | } |
| 707 | |
| 708 | /// An iterator that yields all non-overlapping capture groups matching a |