combine2<T1, T2, R> static method
Implementation
static RxComputed<R> combine2<T1, T2, R>(
Rx<T1> rx1,
Rx<T2> rx2,
R Function(T1, T2) combiner,
) {
return computed(() => combiner(rx1.value, rx2.value));
}
static RxComputed<R> combine2<T1, T2, R>(
Rx<T1> rx1,
Rx<T2> rx2,
R Function(T1, T2) combiner,
) {
return computed(() => combiner(rx1.value, rx2.value));
}