Initializer

init(_:columns:)

Creates a table that computes its rows based on a collection of identifiable data.

Declaration 宣言

init<Data>(_ data: Data, columns: () -> Columns) where Rows == TableForEachContent<Data>, Data : RandomAccessCollection, Columns.TableRowValue == Data.Element
Available when Value is Rows.TableRowValue, Rows conforms to TableRowContent, Columns conforms to TableColumnContent, and Rows.TableRowValue is Columns.TableRowValue.

Parameters パラメータ

data

The identifiable data for computing the table rows.

columns

The columns to display in the table.

See Also 参照

Creating a Table from Columns