Skip to content

Instantly share code, notes, and snippets.

@kiwiandroiddev
Created October 3, 2016 05:20
Show Gist options
  • Select an option

  • Save kiwiandroiddev/886a90f2c22315fcd02d521f9970ede9 to your computer and use it in GitHub Desktop.

Select an option

Save kiwiandroiddev/886a90f2c22315fcd02d521f9970ede9 to your computer and use it in GitHub Desktop.
filterNotNull for RxJava in Kotlin
/**
* Asynchronous equivalent of filterNotNull in Kotlin's stdlin (kotlin.collections)
*/
fun <T> Observable<T?>.filterNotNull() : Observable<T> {
return this.filter { item -> item != null }.map { it!! }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment