pub trait Tuple<T, const N: usize, O: Array<N, T>> { // Required method fn tuple(self) -> O; }
Turn a array into a tuple. Implemented for N≤32
Turn a array into a tuple.