Skip to content

Instantly share code, notes, and snippets.

@gastsail
Created March 23, 2020 15:59
Show Gist options
  • Save gastsail/462cde56c1759519e2d5a5f8930a0a1f to your computer and use it in GitHub Desktop.
Save gastsail/462cde56c1759519e2d5a5f8930a0a1f to your computer and use it in GitHub Desktop.
val getCart: LiveData<MutableList<Cart>> = Transformations.switchMap(cartHashMap) {
liveData(context = viewModelScope.coroutineContext + Dispatchers.IO) {
emit(it.values.toMutableList())
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment