Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds a new LiftTrans typeclass #853

Merged
merged 1 commit into from
Feb 10, 2016
Merged

Commits on Feb 2, 2016

  1. Adds a new LiftTrans typeclass

    This typeclass adds a `liftT` function which is similar to the liftM
    function on the scalaz MonadTrans typeclass, however this one takes into
    account that you might not need the power of a monad in order to be able
    to lift into a transformer, for example, we are able to Lift any M[A]
    into a Kleisli[M, B, A] regardless of whether or not M is a Monad,
    Functor, or any other such thing. Thish would be useful in cases where
    you are constructing an applicative computation using values for which
    you don't have a monad.
    stew committed Feb 2, 2016
    Configuration menu
    Copy the full SHA
    c6750c3 View commit details
    Browse the repository at this point in the history