pub fn try_map<T, U, const N: usize>( array: [T; N], f: impl FnMut(T) -> Option<U>, ) -> Option<[U; N]>