pub fn try_magnitude_squared<T, const N: usize>(
    array: [T; N]
) -> Option<<T as Mul<T>>::Output>
where T: Mul<T, Output: AddAssign> + Copy,