Class FlowableInternalHelper.FlatMapWithCombinerOuter<T,R,U>
- java.lang.Object
-
- io.reactivex.rxjava3.internal.operators.flowable.FlowableInternalHelper.FlatMapWithCombinerOuter<T,R,U>
-
- All Implemented Interfaces:
Function<T,org.reactivestreams.Publisher<R>>
- Enclosing class:
- FlowableInternalHelper
static final class FlowableInternalHelper.FlatMapWithCombinerOuter<T,R,U> extends java.lang.Object implements Function<T,org.reactivestreams.Publisher<R>>
-
-
Constructor Summary
Constructors Constructor Description FlatMapWithCombinerOuter(BiFunction<? super T,? super U,? extends R> combiner, Function<? super T,? extends org.reactivestreams.Publisher<? extends U>> mapper)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.reactivestreams.Publisher<R>
apply(T t)
Apply some calculation to the input value and return some other value.
-