say I have this code: ``` fun textChanges(): Obs...
# coroutines
a
say I have this code:
Copy code
fun textChanges(): Observable<String> =
    TODO()

object Stuff

fun networkRequest(txt: String): Observable<Stuff> =
    TODO()

fun autocomplete(): Observable<Stuff> =
    textChanges()
        .switchMap(::networkRequest)