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
Currently we have both the Compose and Kleisli constructors. They are fairly similar, but both needed.
It would be nice to be able to unify them. This could depend on understanding a meaningful way to emit multiple outputs from the same machine (meaning that StateMachine a b could emit multiple outputs of type b). The main issue I see with this is understanding the return type of Parallel; if we just zip the results of two machines, we might loose stuff
The text was updated successfully, but these errors were encountered:
Currently we have both the
Compose
andKleisli
constructors. They are fairly similar, but both needed.It would be nice to be able to unify them. This could depend on understanding a meaningful way to emit multiple outputs from the same machine (meaning that
StateMachine a b
could emit multiple outputs of typeb
). The main issue I see with this is understanding the return type ofParallel
; if we justzip
the results of two machines, we might loose stuffThe text was updated successfully, but these errors were encountered: