Package-level declarations

Functions

Link copied to clipboard

Returns an empty new MutableReactiveList.

fun <E> reactiveListOf(vararg elements: E): MutableReactiveList<E>

Returns a new MutableReactiveList containing the specified elements

Link copied to clipboard

Returns an empty new MutableReactiveMap.

fun <K, V> reactiveMapOf(vararg pairs: Pair<K, V>): MutableReactiveMap<K, V>

Returns a MutableReactiveMap with the specified contents, given as a list of pairs where the first value is the key and the second is the value.

Link copied to clipboard

Returns an empty new MutableReactiveSet.

fun <E> reactiveSetOf(vararg elements: E): MutableReactiveSet<E>

Returns a new MutableReactiveSet containing the specified elements

Link copied to clipboard

Returns a new MutableReactiveList filled with all elements of this collection.

Link copied to clipboard

Returns a new MutableReactiveMap filled with all elements of this collection.

Link copied to clipboard

Returns a new MutableReactiveSet filled with all elements of this collection.