You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem : switching flows is currently possible with ap/?! but the behavior is discrete and eager, which is not always what we want.
Solution : provide a new macro cp (continuous process) returning a continuous flow, with ?! available as a forking operator. Like in ap, ?! runs provided flow, forks current computation and cancels previous branch for each successive value, but each branch is run lazily.
Problem : switching flows is currently possible with
ap
/?!
but the behavior is discrete and eager, which is not always what we want.Solution : provide a new macro
cp
(continuous process) returning a continuous flow, with?!
available as a forking operator. Like inap
,?!
runs provided flow, forks current computation and cancels previous branch for each successive value, but each branch is run lazily.Example :
The text was updated successfully, but these errors were encountered: