mapIterable

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

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