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

Trait that list arrays implement for the purposes of DRY.

Required Methods

Safety

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

Implementors