Closed mikesol closed 2 years ago
combineFold
is not the same as flip (fold f) b <<< oneOf
. In combineFold
you get only the last batch of emissions from the upstream Events and fold over that. It only starts emitting after you get at least one emission from all Upstream Events. It is just a generalized form of combineLatest
Ah ok, my bad I'll close then, sorry for the noise!
I'm pretty sure
combineFold
is:where
oneOf
is fromData.Foldable
.