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.
pub trait IterableListArray: Array {
unsafe fn value_unchecked(
&self,
i: usize
) -> Box<dyn Array + 'static, Global>;
}
Trait that list arrays implement for the purposes of DRY.