ChangedState

sealed class ChangedState<out S>

Represents a state transition. Instances of this a created through the State.mutate, State.override and State.noChange methods.

ChangedState does not allow you to directly access any property. Then you may wonder how do you write unit test for one of your functions that return a ChangedState? You need to call ChangedState.reduce to get the actual result of the change state.

Functions

Link copied to clipboard
fun <S> ChangedState<S>.reduce(state: S): S

Transforms the given state according to ChangedState and returns the new S.