tableOf

fun <T> tableOf(): Table<T>(source)

Function used to disambiguate between the two tableOf implementations, in case of 0 arguments.


fun <T> tableOf(vararg values: T): Table<T>(source)

Creates a new table from a list of elements, using auto-generated identifiers.


fun <T> tableOf(vararg pairs: Pair<TableRowId, T>): Table<T>(source)

Creates a new table from a list of pairs mapping an identifier to its respective element.