chunks_to_core

Function chunks_to_core 

Source
pub fn chunks_to_core<T, const I: usize, const O: usize>(
    input: ArrayOfArrays<T, I, O>,
) -> [[T; I]; O]
Expand description

Converts an Array of Arrays into a core array of arrays.

Notice this is similar to the array_to_core function, but works on chunks (i.e. arrays of arrays).