robinchew
10/17/2018, 2:03 PMscan
where the accumulation function has 2 arguments of different types?leolima
10/17/2018, 4:04 PMObservable.just("Hello", "World")
.scan(0) { acc, it -> acc + it.length }
.subscribe(::println)
seems to work fineUlrik Bech Hald
10/23/2018, 11:24 AM