pub trait IterableListArray: Array {
    unsafe fn value_unchecked(
        &self,
        i: usize
    ) -> Box<dyn Array + 'static, Global>; }
Expand description

Trait that list arrays implement for the purposes of DRY.

Required methods

Safety

The caller must ensure that i < self.len()

Implementors