(self)
| 118 | type IntoIter = IntoIter<'a, Self::Item>; |
| 119 | |
| 120 | fn into_iter(self) -> Self::IntoIter { |
| 121 | self.items.into_iter() |
| 122 | } |
| 123 | } |
| 124 | |
| 125 | impl<'a, 'b, T, const MIN: usize> IntoIterator for &'b CommaSeparated<'a, T, MIN> { |
no test coverage detected