Lines Matching defs:next
700 fn next(&mut self) -> Option<Match<'t>> {
702 self.0.next().map(|(s, e)| Match::new(text, s, e))
723 fn next(&mut self) -> Option<Captures<'t>> {
724 self.0.next().map(|locs| Captures {
747 fn next(&mut self) -> Option<&'t [u8]> {
749 match self.finder.next() {
785 fn next(&mut self) -> Option<&'t [u8]> {
792 return self.splits.next();
824 fn next(&mut self) -> Option<Option<&'r str>> {
826 .next()
904 /// index corresponds to the next capture group in the regex. If a capture
1095 fn next(&mut self) -> Option<Option<Match<'t>>> {
1097 .next()