pub trait Transpose {
type Output;
// Required method
fn transpose(self) -> Self::Output;
}Expand description
タプルのVecをVecのタプルに変換する。
pub trait Transpose {
type Output;
// Required method
fn transpose(self) -> Self::Output;
}タプルのVecをVecのタプルに変換する。