pub fn build_extend(
array: &ArrayData,
) -> Box<dyn Fn(&mut _MutableArrayData<'_>, usize, usize, usize) + '_>
Expand description
Returns a function that extends the run encoded array.
It finds the physical indices in the source array that correspond to the logical range to copy, and adjusts the runs to the logical indices of the array to extend. The values are copied from the source array to the destination array verbatim.