Avatar
struct Tuplify<each T> { // タプルを作る丸括弧 typealias Tuple = (repeat each T) } typealias A = Tuplify<Int, Int>.Tuple // A = (Int, Int) typealias B = Tuplify<Int>.Tuple // B = Int # (Int) => Int の変換が起きている (edited)