Skip to content

Instantly share code, notes, and snippets.

@alan-rodriguez
Last active May 21, 2018 03:53
Show Gist options
  • Save alan-rodriguez/e9bb177a9bfbb09ea75b71d6b095fde8 to your computer and use it in GitHub Desktop.
Save alan-rodriguez/e9bb177a9bfbb09ea75b71d6b095fde8 to your computer and use it in GitHub Desktop.
Transformations extensions for lifecycle-livedata-ktx?
class XViewModel : ViewModel() {
private lateinit var org: LiveData<Int>
val mapped: LiveData<String> = org.map { "Here is a number:$it" }
val switched: LiveData<String> = org.switchMap(::doWork)
private fun doWork(i: Int): LiveData<String> = TODO()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment