what do you prefer?: ``` combineLatest(a, b, (a, b...
# rx
a
what do you prefer?:
Copy code
combineLatest(a, b, (a, b) -> {
    methodWithSideEffects(a, b)
    return empty()
}).subscribe()
or
Copy code
combineLatest(a, b, Pair::new)
    .subscribe {methodWithSideEffects(it.a, it.b)}
or... is there anything better without allocating a
Pair
?