Skip to content

Instantly share code, notes, and snippets.

@linean
Created April 13, 2022 17:18
Show Gist options
  • Save linean/9f14e4877c0f5cf60b2e99c671478b84 to your computer and use it in GitHub Desktop.
Save linean/9f14e4877c0f5cf60b2e99c671478b84 to your computer and use it in GitHub Desktop.
fun <STATE, EVENT> ViewModel.StateReducerFlow(
initialState: STATE,
reduceState: (STATE, EVENT) -> STATE,
): StateReducerFlow<STATE, EVENT> = StateReducerFlowImpl(initialState, reduceState, viewModelScope)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment