mapToNullable

fun <T, R> Maybe<T>.mapToNullable(function: (T) -> R?): Maybe<R>
fun <T, R> Single<T>.mapToNullable(function: (T) -> R?): Maybe<R>