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

Change MonadError from F[_, _] to F[_] #553

Merged
merged 4 commits into from
Oct 5, 2015

Commits on Oct 1, 2015

  1. Change MonadError from F[_, _] to F[_]

    I was working with MonadError today and the `F[_, _]` approach made me use
    quite a few type lambdas when I was working with types like Future/Task.
    Since the error type is already encoded as another type parameter, as
    far as I know we don't really lose anything by using a type constructor
    with a single parameter for `F`.
    
    It's quite possible that there's a reason for using `F[_, _]`. If anyone
    knows of one, please speak up.
    ceedubs committed Oct 1, 2015
    Configuration menu
    Copy the full SHA
    d4ec527 View commit details
    Browse the repository at this point in the history

Commits on Oct 5, 2015

  1. Configuration menu
    Copy the full SHA
    6f64f17 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b9e9907 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3c502ee View commit details
    Browse the repository at this point in the history