Trait ArrayIteratorExt

Source
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§

Source

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

Source

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.

Implementors§