mapIterable

fun <T, R> Observable<Iterable<T>>.mapIterable(mapper: (T) -> R): Observable<List<R>>

Maps each Iterable emitted by the Observable using the provided mapper and emits Lists with the result elements. See map for more information.