(self)
| 785 | type IntoIter = RunArrayIter<'a, R, V>; |
| 786 | |
| 787 | fn into_iter(self) -> Self::IntoIter { |
| 788 | RunArrayIter::new(self) |
| 789 | } |
| 790 | } |
| 791 | /// An array that can be downcast to a [`RunArray`] of any run end type and any value type. |
| 792 | /// |
no outgoing calls