Package-level declarations

Classes supporting the observer pattern, including the implementation of the observable list.

Types

Link copied to clipboard

An interface for mutable observable state.

Link copied to clipboard
interface ObservableState<S>

An interface for observable state.

Link copied to clipboard
open class ObservableValue<T>(value: T) : MutableState<T>

The observable value class.