Skip to content

Redundant constraints for MonadSnap #248

@treeowl

Description

@treeowl

Currently,

class (Monad m, MonadIO m, MonadCatchIO m, MonadPlus m, Functor m, Applicative m, Alternative m) => MonadSnap m

For GHC before 7.10, that should be

class (MonadCatchIO m, MonadPlus m, Alternative m) => MonadSnap m

For GHC 7.10 and later, it should be

class (MonadCatchIO m, MonadPlus m) => MonadSnap m

Note also that the package snap-core gets MonadCatchIO from is marked obsolete; it's been replaced by another.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions