pub trait ArrayIterator: Iterator<Item = VortexResult<ArrayRef>> { // Required method fn dtype(&self) -> &DType; }
Iterator of array with a known DType.
DType
It’s up to implementations to guarantee all arrays have the same DType.