Hey guys, can anyone help me compile this function...
# announcements
a
Hey guys, can anyone help me compile this function without warnings?
Copy code
fun <T> Observable<T?>.dropNulls(): Observable<T> =
    filter { it != null } as Observable<T>