pub fn chunks_from_core<T, const I: usize, const O: usize>(
input: [[T; I]; O],
) -> ArrayOfArrays<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 a core array of arrays into an Array of Arrays.
This is similar to the array_from_core function, but works on
chunks (i.e. arrays of arrays).