Lines Matching defs:next
756 fn next(&mut self) -> Option<Option<&'r str>> {
758 .next()
789 fn next(&mut self) -> Option<&'t str> {
791 match self.finder.next() {
827 fn next(&mut self) -> Option<&'t str> {
834 return self.splits.next();
914 /// index corresponds to the next capture group in the regex. If a capture
1090 fn next(&mut self) -> Option<Option<Match<'t>>> {
1092 .next()
1124 fn next(&mut self) -> Option<Captures<'t>> {
1125 self.0.next().map(|locs| Captures {
1148 fn next(&mut self) -> Option<Match<'t>> {
1150 self.0.next().map(|(s, e)| Match::new(text, s, e))