pub unsafe fn horizontal_flatten_unchecked(
arrays: &[Box<dyn Array>],
widths: &[usize],
output_height: usize,
) -> Box<dyn Array>Expand description
Low-level operation used by concat_arr. This should be called with the inner values array of
every FixedSizeList array.
ยงSafety
arraysis non-emptyarraysandwidthshave equal length- All widths in
widthsare non-zero - Every array
arrays[i]has a length of eitherwidths[i] * output_heightwidths[i](this would be broadcasted)
- All arrays in
arrayshave the same type