jeff
Observable.zip(obsA, obsB) { a, b -> a + b }
Observable.zip( obsA, obsB, BiFunction { a, b -> a + b } )
SomethingCustom.zip(obsA, obsB) { a, b -> a + b }
Frank Harper
A modern programming language that makes developers happier.