Skip to content

Instantly share code, notes, and snippets.

@mattrob33
Last active March 9, 2022 14:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattrob33/c4ec4f1bca2715e57031db6f61a036f3 to your computer and use it in GitHub Desktop.
Save mattrob33/c4ec4f1bca2715e57031db6f61a036f3 to your computer and use it in GitHub Desktop.
val movie: StateFlow<Movie> = ...
val title: StateFlow<String> = movie.mapState { it.title }
val cast: StateFlow<List<Actor>> = movie.mapState { getCast(it) }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment