polars_arrow/array/struct_/
iterator.rsuse super::StructArray;
use crate::bitmap::utils::{BitmapIter, ZipValidity};
use crate::scalar::{new_scalar, Scalar};
use crate::trusted_len::TrustedLen;
pub struct StructValueIter<'a> {
array: &'a StructArray,
index: usize,
end: usize,
}
impl<'a> StructValueIter<'a> {
#[inline]
pub fn new(array: &'a StructArray) -> Self {
Self {
array,
index: 0,
end: array.len(),
}
}
}
impl Iterator for StructValueIter<'_> {
type Item = Vec<Box<dyn Scalar>>;
#[inline]
fn next(&mut self) -> Option<Self::Item> {
if self.index == self.end {
return None;
}
let old = self.index;
self.index += 1;
Some(
self.array
.values()
.iter()
.map(|v| new_scalar(v.as_ref(), old))
.collect(),
)
}
#[inline]
fn size_hint(&self) -> (usize, Option<usize>) {
(self.end - self.index, Some(self.end - self.index))
}
}
unsafe impl TrustedLen for StructValueIter<'_> {}
impl DoubleEndedIterator for StructValueIter<'_> {
#[inline]
fn next_back(&mut self) -> Option<Self::Item> {
if self.index == self.end {
None
} else {
self.end -= 1;
Some(
self.array
.values()
.iter()
.map(|v| new_scalar(v.as_ref(), self.end))
.collect(),
)
}
}
}
type ValuesIter<'a> = StructValueIter<'a>;
type ZipIter<'a> = ZipValidity<Vec<Box<dyn Scalar>>, ValuesIter<'a>, BitmapIter<'a>>;
impl<'a> IntoIterator for &'a StructArray {
type Item = Option<Vec<Box<dyn Scalar>>>;
type IntoIter = ZipIter<'a>;
fn into_iter(self) -> Self::IntoIter {
self.iter()
}
}
impl<'a> StructArray {
pub fn iter(&'a self) -> ZipIter<'a> {
ZipValidity::new_with_validity(StructValueIter::new(self), self.validity())
}
pub fn values_iter(&'a self) -> ValuesIter<'a> {
StructValueIter::new(self)
}
}