constructs a new iterator
(&'a self)
| 1396 | impl<'a, T: ArrowPrimitiveType> PrimitiveArray<T> { |
| 1397 | /// constructs a new iterator |
| 1398 | pub fn iter(&'a self) -> PrimitiveIter<'a, T> { |
| 1399 | PrimitiveIter::<'a, T>::new(self) |
| 1400 | } |
| 1401 | } |
| 1402 | |
| 1403 | /// An optional primitive value |
no outgoing calls