Trait vortex_array::accessor::ArrayAccessor
source · pub trait ArrayAccessor<Item: ?Sized> {
// Required method
fn with_iterator<F, R>(&self, f: F) -> VortexResult<R>
where F: for<'a> FnOnce(&mut dyn Iterator<Item = Option<&'a Item>>) -> R;
}
Expand description
Trait for arrays that support iterative access to their elements.
Required Methods§
sourcefn with_iterator<F, R>(&self, f: F) -> VortexResult<R>
fn with_iterator<F, R>(&self, f: F) -> VortexResult<R>
Object Safety§
This trait is not object safe.