mapIterableTo

fun <T, R, C : MutableCollection<R>> Single<Iterable<T>>.mapIterableTo(collectionSupplier: () -> C, mapper: (T) -> R): Single<C>

Same as mapIterable but saves resulting values into a MutableCollection returned by collectionSupplier.