louiscad
06/03/2019, 9:50 AMcollect
variant for Flow
that allows to access the previous value, or null for initial value?gildor
06/03/2019, 9:58 AMwindowed
that will emit Pair(null, first) elementelizarov
06/03/2019, 10:01 AMgildor
06/03/2019, 10:01 AMpakoito
06/03/2019, 11:17 AMmergeAsTuple(flow, flow.skip(1)).map { (previous, current) -> ... }
jw
06/03/2019, 12:50 PM.publish { zip(flow, flow.skip(1), ::Pair) }
to avoid subscribing upstream twicepakoito
06/03/2019, 1:09 PMflow
there was shared()
first too, right?jw
06/03/2019, 1:11 PMflow.skip(1)
is subscribed to yielding either two upstream subscriptions or no outputpakoito
06/03/2019, 1:15 PMcached()
for Rxjw
06/03/2019, 1:17 PM