ReactiveSubjectCombinationsExtension<T> extension
- on
Methods
-
scan<
R> (R initialValue, R accumulator(R accumulated, T current, int index)) → ReactiveSubject< R> -
Available on ReactiveSubject<
Applies an accumulator function over the source ReactiveSubject, and returns each intermediate result as a ReactiveSubject.T> , provided by the ReactiveSubjectCombinationsExtension extension -
startWith(
T startValue) → ReactiveSubject< T> -
Available on ReactiveSubject<
Prepends a given value to the source ReactiveSubject.T> , provided by the ReactiveSubjectCombinationsExtension extension -
withLatestFrom<
S, R> (ReactiveSubject< S> other, R combiner(T event, S latestFromOther)) → ReactiveSubject<R> -
Available on ReactiveSubject<
Combines the latest values of two ReactiveSubjects using a specified combiner function.T> , provided by the ReactiveSubjectCombinationsExtension extension