pub trait ArrayTools<T: Copy + Default, const N: usize> { // Required method fn reversed(&self) -> [T; N]; }