// This file was generated using gyb. Do not edit it directly. Edit // TableRowBuilder.swift.gyb instead. // swiftformat:options --allow-partial-wrapping true %{ maximum_column_count = 20 }% /// A result builder for constructing a collection of table columns. @resultBuilder public struct TableRowBuilder { public static func buildBlock() -> EmptyTableRowContent { EmptyTableRowContent() } %for i in range(1, maximum_column_count + 1): public static func buildBlock< ${", ".join("Content%d: View" % j for j in range(i))} >( ${", ".join("_ column%d: TableColumn" % (j, j) for j in range(i))} ) -> TupleTableRowContent${i}< RowValue, ${", ".join("Content%d" % j for j in range(i))} > { TupleTableRowContent${i}( ${", ".join("column%d" % j for j in range(i))} ) } %end }