(&mut self, seq: &Utf8Sequence)
| 880 | } |
| 881 | |
| 882 | fn c_utf8_seq(&mut self, seq: &Utf8Sequence) -> Result { |
| 883 | if self.c.compiled.is_reverse { |
| 884 | self.c_utf8_seq_(seq) |
| 885 | } else { |
| 886 | self.c_utf8_seq_(seq.into_iter().rev()) |
| 887 | } |
| 888 | } |
| 889 | |
| 890 | fn c_utf8_seq_<'r, I>(&mut self, seq: I) -> Result |
| 891 | where I: IntoIterator<Item=&'r Utf8Range> { |
no test coverage detected