Converts a tuple type into a tuple of tuples, where each tuple is a column of the original tuple.
type T0 = Columnify<2, [1, 2, 3, 4, 5, 6]>;// ^ = type T0 = [[1, 3, 5], [2, 4, 6]] Copy
type T0 = Columnify<2, [1, 2, 3, 4, 5, 6]>;// ^ = type T0 = [[1, 3, 5], [2, 4, 6]]
Converts a tuple type into a tuple of tuples, where each tuple is a column of the original tuple.