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§

source

fn into_stream(self) -> impl ArrayStream
where Self: Sized,

source

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.

Implementors§