Trait ArrayIterator

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

Iterator of array with a known DType.

It’s up to implementations to guarantee all arrays have the same DType.

Required Methods§

Source

fn dtype(&self) -> &DType

Trait Implementations§

Implementations on Foreign Types§

Source§

impl ArrayIterator for Box<dyn ArrayIterator + Send>

Source§

fn dtype(&self) -> &DType

Implementors§