buildObservableList

inline fun <T> buildObservableList(builderAction: MutableList<T>.() -> Unit): List<T>

Builds a new read-only ObservableList by populating a MutableList using the given builderAction and returning a read-only list with the same elements.

See also