Trait vortex_array::iter::ArrayIterator

source ·
pub trait ArrayIterator: Iterator<Item = VortexResult<ArrayData>> {
    // Required method
    fn dtype(&self) -> &DType;
}
Expand description

A stream of array chunks along with a DType. Analogous to Arrow’s RecordBatchReader.

Required Methods§

source

fn dtype(&self) -> &DType

Implementors§

source§

impl<I> ArrayIterator for ArrayIteratorAdapter<I>
where I: Iterator<Item = VortexResult<ArrayData>>,