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, functions like snapshot allow passing in any type of Cell (i.e. CellLoop, CellSink, ...)
However, they must all be the same type right now. Need to change the signatures so that each kind gets its own type variable (e.g. SodiumCell celA, SodiumCell celB)
This isn't a showstopper since one can always use toCell to convert it
The text was updated successfully, but these errors were encountered:
Sort of feels like implementing inheritance, and doing it the OO way. Which there is nothing wrong with in a FP language, it give convenience to the end user.
Currently, functions like snapshot allow passing in any type of
Cell
(i.e.CellLoop
,CellSink
, ...)However, they must all be the same type right now. Need to change the signatures so that each kind gets its own type variable (e.g.
SodiumCell celA
,SodiumCell celB
)This isn't a showstopper since one can always use
toCell
to convert itThe text was updated successfully, but these errors were encountered: