Iterate over items in this `ScopeVec`, consuming ownership.
(self)
| 60 | |
| 61 | /// Iterate over items in this `ScopeVec`, consuming ownership. |
| 62 | pub fn into_iter(self) -> impl ExactSizeIterator<Item = Box<[T]>> { |
| 63 | self.data.into_inner().into_iter() |
| 64 | } |
| 65 | } |
| 66 | |
| 67 | #[cfg(test)] |