pub trait ArrayIteratorExt: ArrayIterator {
// Provided methods
fn into_stream(self) -> impl ArrayStream
where Self: Sized { ... }
fn try_into_chunked(self) -> Result<ChunkedArray, VortexError>
where Self: Sized { ... }
}pub trait ArrayIteratorExt: ArrayIterator {
// Provided methods
fn into_stream(self) -> impl ArrayStream
where Self: Sized { ... }
fn try_into_chunked(self) -> Result<ChunkedArray, VortexError>
where Self: Sized { ... }
}