Trait vortex_array::iter::ArrayIteratorExt
source · pub trait ArrayIteratorExt: ArrayIterator {
// Provided methods
fn into_stream(self) -> impl ArrayStream
where Self: Sized { ... }
fn into_array_data(self) -> VortexResult<ArrayData>
where Self: Sized { ... }
}
Provided Methods§
fn into_stream(self) -> impl ArrayStreamwhere
Self: Sized,
sourcefn into_array_data(self) -> VortexResult<ArrayData>where
Self: Sized,
fn into_array_data(self) -> VortexResult<ArrayData>where
Self: Sized,
Collect the iterator into a single ArrayData
.
If the iterator yields multiple chunks, they will be returned as a ChunkedArray
.