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 need to specify list of exceptions precisely. But the order of exceptions in the list doesn't actually matter. So the following two actions are the same, but they won't typecheck to each other:
foo::EIO '[ E1, E2 ] Intbar::EIO '[ E2, E1 ] Int
This is usually handled by typeclasses:
foo::Throwse '[ E1, E2 ] =>EIOeInt
The text was updated successfully, but these errors were encountered:
Currently, we need to specify list of exceptions precisely. But the order of exceptions in the list doesn't actually matter. So the following two actions are the same, but they won't typecheck to each other:
This is usually handled by typeclasses:
The text was updated successfully, but these errors were encountered: