Functions

Link copied to clipboard
inline fun <Data : Any> getAuxDataOrNull(index: Int): Data?

Returns the auxiliary data for the argument at index as Data, or null if there is no associated auxiliary or they have been discarded by SQLite.

Link copied to clipboard
inline fun <Data : Any> getOrCreateAuxData(index: Int, noinline compute: () -> Data): Data

Returns the auxiliary data for the argument at index as Data.

Link copied to clipboard
fun setAuxData(index: Int, data: Any)

Sets data as the auxiliary data for the argument at index.