Returns a Maybe based on applying a specified function to the item emitted by the current Maybe, where that function returns a Single. When this Maybe just completes the resulting Maybe completes as well. <img width="640" height="315" src="https://raw.gith
(@NonNull Function<? super T, ? extends SingleSource<? extends R>> mapper)
| 3169 | * @since 3.0.0 |
| 3170 | */ |
| 3171 | @CheckReturnValue |
| 3172 | @NonNull |
| 3173 | @SchedulerSupport(SchedulerSupport.NONE) |
| 3174 | public final <@NonNull R> Maybe<R> concatMapSingle(@NonNull Function<? super T, ? extends SingleSource<? extends R>> mapper) { |
| 3175 | return flatMapSingle(mapper); |
| 3176 | } |
| 3177 | |
| 3178 | /** |
| 3179 | * Returns a {@link Flowable} that emits the items emitted from the current {@code Maybe}, then the {@code other} {@link MaybeSource}, one after |