tableOf

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

Creates a new empty table.


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

Creates a new table with the provided value, using an auto-generated identifier.


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

Creates a new table from a list of values, 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 value.