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
On 31 Oct 2017, at 12:18 am, Basov Alexandr Evgenievich ***@***.***> wrote:
Hi, there is an exercise to implement the
embedded :: MaybeT (ExceptT String (ReaderT () IO)) Int
embedded = ??? (const (Right (Just 1)))
My solution is:
embedded :: MaybeT (ExceptT String (ReaderT () IO)) Int
embedded = MaybeT $ ExceptT $ ReaderT $ ExceptT (const (Right (Just 1)))
Haven't found it in your solutions, so maybe it will be helpful for someone:)
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.
Hi, there is an exercise to implement the
My solution is:
Haven't found it in your solutions, so maybe it will be helpful for someone:)
The text was updated successfully, but these errors were encountered: