Trait ArrayIterator

Source
pub trait ArrayIterator: Iterator<Item = Result<Array, VortexError>> {
    // 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§