pub fn map_nested_array<T, R, const SIZE: usize>(
    array: [[T; SIZE]; SIZE],
    mapper: impl Fn(T) -> Result<R, Error>
) -> Result<[[R; SIZE]; SIZE], Error>
Expand description

Map the elements in the fixed-sized array [[T; SIZE]; SIZE].