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