polars_arrow/array/union/
iterator.rsuse super::UnionArray;
use crate::scalar::Scalar;
use crate::trusted_len::TrustedLen;
#[derive(Debug, Clone)]
pub struct UnionIter<'a> {
array: &'a UnionArray,
current: usize,
}
impl<'a> UnionIter<'a> {
#[inline]
pub fn new(array: &'a UnionArray) -> Self {
Self { array, current: 0 }
}
}
impl Iterator for UnionIter<'_> {
type Item = Box<dyn Scalar>;
#[inline]
fn next(&mut self) -> Option<Self::Item> {
if self.current == self.array.len() {
None
} else {
let old = self.current;
self.current += 1;
Some(unsafe { self.array.value_unchecked(old) })
}
}
#[inline]
fn size_hint(&self) -> (usize, Option<usize>) {
let len = self.array.len() - self.current;
(len, Some(len))
}
}
impl<'a> IntoIterator for &'a UnionArray {
type Item = Box<dyn Scalar>;
type IntoIter = UnionIter<'a>;
#[inline]
fn into_iter(self) -> Self::IntoIter {
self.iter()
}
}
impl<'a> UnionArray {
#[inline]
pub fn iter(&'a self) -> UnionIter<'a> {
UnionIter::new(self)
}
}
impl std::iter::ExactSizeIterator for UnionIter<'_> {}
unsafe impl TrustedLen for UnionIter<'_> {}