pub fn div_all<T, const N: usize, Rhs>( array: [T; N], rhs: Rhs ) -> [<T as Div<Rhs>>::Output; N]where T: Div<Rhs>, Rhs: Copy,