pub fn chunks_to_core<T, const I: usize, const O: usize>(
input: ArrayOfArrays<T, I, O>,
) -> [[T; I]; O]where
[T; I]: AssocArraySize,
[[T; I]; O]: AssocArraySize,
<[T; I] as AssocArraySize>::Size: ArraySize<ArrayType<T> = [T; I]>,
<[[T; I]; O] as AssocArraySize>::Size: ArraySize<ArrayType<[T; I]> = [[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).