Mutable Reactive List
A mutable list that also exposes a StateFlow via asStateFlow, allowing for reactive observation of its contents.
It delegates MutableList functionality to an internal list and emits an immutable List snapshot to its collectors whenever the list is modified.
Parameters
The type of elements contained in the list.
Functions
Returns the collection's content as a StateFlow of an immutable collection IC type.
Executes a block of modifications on the underlying mutable collection and notifies observers only once after the block has completed.
Executes a suspending block of modifications on the underlying mutable collection and notifies observers only once after the block has completed.
Returns a new MutableReactiveList filled with all elements of this collection.
Returns a new MutableReactiveSet filled with all elements of this collection.