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
Procs should be called drivers. Additionally we should change their format from this
type Driver = Array (MsgID, Effect) -> MsgID -> Any -> Driver
to this
type Driver = MsgID -> Any -> (Driver, Array (MsgId, Effect))
Since this is more consistent with the format for cogs, where outputs aren't kept in the closure. The new docs (WIP; not yet published) already reflect this format change.
The text was updated successfully, but these errors were encountered:
Procs should be called drivers. Additionally we should change their format from this
to this
Since this is more consistent with the format for cogs, where outputs aren't kept in the closure. The new docs (WIP; not yet published) already reflect this format change.
The text was updated successfully, but these errors were encountered: