Function try_from_fn_boxed

Source
pub const fn try_from_fn_boxed<T, const N: usize, F, E>(
    fill: F,
) -> Result<Box<[T; N]>, E>
where F: FnMut(usize) -> Result<T, E>, [T; N]: ArrayFromFn<T, N>,