ObservableList

Observable list interface.

Inheritors

Properties

Link copied to clipboard
Link copied to clipboard
abstract override val size: Int
Link copied to clipboard
val <S> ObservableState<S>.stateFlow: <Error class: unknown class><S>

Extension property returning a StateFlow for an ObservableState.

Functions

Link copied to clipboard
abstract override fun add(element: T): Boolean
abstract fun add(index: Int, element: T)
Link copied to clipboard
abstract override fun addAll(elements: Collection<T>): Boolean
abstract fun addAll(index: Int, elements: Collection<T>): Boolean
Link copied to clipboard
abstract override fun clear()
Link copied to clipboard
abstract operator override fun contains(element: T): Boolean
Link copied to clipboard
abstract override fun containsAll(elements: Collection<T>): Boolean
Link copied to clipboard
abstract operator fun get(index: Int): T
Link copied to clipboard
abstract fun getState(): List<T>

Get current state.

Link copied to clipboard
abstract fun indexOf(element: T): Int
Link copied to clipboard
abstract override fun isEmpty(): Boolean
Link copied to clipboard
abstract operator override fun iterator(): Iterator<T>
Link copied to clipboard
abstract fun lastIndexOf(element: T): Int
Link copied to clipboard
abstract override fun listIterator(): MutableListIterator<T>
abstract override fun listIterator(index: Int): MutableListIterator<T>
Link copied to clipboard
fun List<String>.pairs(): List<<Error class: unknown class><String, String>>

Utility extension function to convert List into List.

Link copied to clipboard
abstract override fun remove(element: T): Boolean
Link copied to clipboard
abstract override fun removeAll(elements: Collection<T>): Boolean
Link copied to clipboard
abstract fun removeAt(index: Int): T
Link copied to clipboard
abstract override fun retainAll(elements: Collection<T>): Boolean
Link copied to clipboard
abstract operator fun set(index: Int, element: T): T
Link copied to clipboard
fun <S, T> ObservableState<S>.sub(contextWidget: Widget? = null, extractor: (S) -> T): ObservableState<T>

Returns a sub-store of the original ObservableState

Link copied to clipboard
abstract override fun subList(fromIndex: Int, toIndex: Int): MutableList<T>
Link copied to clipboard
abstract fun subscribe(observer: (List<T>) -> Unit): () -> Unit

Subscribe for the state change notifications. Calls the observer with the current state.

Link copied to clipboard
fun <T> MutableList<T>.syncWithList(list: List<T>)

Utility extension function to synchronise elements of the MutableList.