Class ObservableInternalHelper.FlatMapIntoIterable<T,U>
- java.lang.Object
-
- io.reactivex.rxjava3.internal.operators.observable.ObservableInternalHelper.FlatMapIntoIterable<T,U>
-
- All Implemented Interfaces:
Function<T,ObservableSource<U>>
- Enclosing class:
- ObservableInternalHelper
static final class ObservableInternalHelper.FlatMapIntoIterable<T,U> extends java.lang.Object implements Function<T,ObservableSource<U>>
-
-
Constructor Summary
Constructors Constructor Description FlatMapIntoIterable(Function<? super T,? extends java.lang.Iterable<? extends U>> mapper)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ObservableSource<U>
apply(T t)
Apply some calculation to the input value and return some other value.
-
-
-
Method Detail
-
apply
public ObservableSource<U> apply(T t) throws java.lang.Throwable
Description copied from interface:Function
Apply some calculation to the input value and return some other value.
-
-