pub trait ArrayImplBuilderPickExt {
    fn pick_from(&mut self, array: &ArrayImpl, logical_rows: &[usize]);
    fn pick_from_multiple(
        &mut self,
        arrays: &[ArrayImpl],
        logical_rows: &[(usize, usize)]
    ); }

Required Methods§

Implementors§