Is there a utility operator for converting from `Observable<List<X>>` to an `Observable<X>` that emits each element in `List<X>`? Otherwise, are there any obvious optimizations for something like: ``` getChannels().switchMap(channels -> Observable.from(channels)) ``` `flatMap()` could be used as well, depending.