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