andrewg
02/28/2017, 1:01 AMcombineLatest(a, b, (a, b) -> {
methodWithSideEffects(a, b)
return empty()
}).subscribe()
or
combineLatest(a, b, Pair::new)
.subscribe {methodWithSideEffects(it.a, it.b)}
or... is there anything better without allocating a Pair?