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
I'm unsure about eee4e31. It works nicely when m is IO, which is the common case. But, because of the way Haskell's type classes work, this presumably rules out instances where m doesn't have MonadError instance, even though we'd ideally have instance MonadError LifxError (LifxT m), i.e. the newtype-derivable one.
The text was updated successfully, but these errors were encountered:
I'm unsure about eee4e31. It works nicely when
m
isIO
, which is the common case. But, because of the way Haskell's type classes work, this presumably rules out instances wherem
doesn't haveMonadError
instance, even though we'd ideally haveinstance MonadError LifxError (LifxT m)
, i.e. the newtype-derivable one.The text was updated successfully, but these errors were encountered: