(&self)
| 97 | } |
| 98 | |
| 99 | fn size_hint(&self) -> (usize, Option<usize>) { |
| 100 | ( |
| 101 | self.current_end - self.current, |
| 102 | Some(self.current_end - self.current), |
| 103 | ) |
| 104 | } |
| 105 | |
| 106 | #[inline] |
| 107 | fn nth(&mut self, n: usize) -> Option<Self::Item> { |
no outgoing calls