mapIterable

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

Converts values of the Iterable emitted by the Single using the provided mapper and emits the resulting values as List.