nhaarman
12/09/2016, 12:00 PMBiFunction and the types explicitly:
observable1
.withLatestFrom(
observable2,
BiFunction { t1: Any, t2: Any -> ... }
)
Ideally this would just be the following, but it can't be matched:
observable1
.withLatestFrom(observable2) { t1, t2 -> ...}