Yields all substrings delimited by a regular expression match. `'r` is the lifetime of the compiled regular expression and `'t` is the lifetime of the byte string being split.
| 731 | /// `'r` is the lifetime of the compiled regular expression and `'t` is the |
| 732 | /// lifetime of the byte string being split. |
| 733 | pub struct Split<'r, 't> { |
| 734 | finder: Matches<'r, 't>, |
| 735 | last: usize, |
| 736 | } |
| 737 | |
| 738 | impl<'r, 't> Iterator for Split<'r, 't> { |
| 739 | type Item = &'t [u8]; |
no outgoing calls
no test coverage detected