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
のタプルに変換する。