Skip to content

Instantly share code, notes, and snippets.

@onlyshk
Created December 7, 2011 07:29
Show Gist options
  • Save onlyshk/1441866 to your computer and use it in GitHub Desktop.
Save onlyshk/1441866 to your computer and use it in GitHub Desktop.
MonadTrans lifting
class MonadTrans t where
lift :: Monad m => m a -> t m a -- lifts a value from the inner monad m to the transformed monad t m
-- could be called lift0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment