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