effectful-plugin

A GHC plugin for improving disambiguation of effects.

LTS Haskell 22.18:1.1.0.2
Stackage Nightly 2024-04-27:1.1.0.2
Latest on Hackage:1.1.0.2

See all snapshots effectful-plugin appears in

BSD-3-Clause licensed by Andrzej Rybczak
Maintained by [email protected]
This version can be pinned in stack with:effectful-plugin-1.1.0.2@sha256:8b5d8b983dddb2b4968e1b2ba4b4c61da44d7d9bb3a92364fce4279c5724d864,2537

Module documentation for 1.1.0.2

effectful-plugin

A GHC plugin for improving disambiguation of effects.

Usage

To enable the plugin, add the following GHC option to your project file:

ghc-options: -fplugin=Effectful.Plugin

What it does

The following code:

action :: (State Int :> es, State String :> es) => Eff es ()
action = do
  x <- get
  put (x + 1)

will not compile out of the box because GHC doesn’t know that you meant to get an Int since the function + as well as the literal 1 are polymorphic. You have to write:

action :: (State Int :> es, State String :> es) => Eff es ()
action = do
  x <- get @Int
  put (x + 1)

Which is slightly annoying. This plugin tells GHC extra information so code like this can type-check without having to spell types to the compiler.

Acknowledgements

Thanks to Xy Ren for her work on cleff-plugin effectful-plugin is based on.

Changes

effectful-plugin-1.1.0.2 (2023-09-13)

  • Add support for GHC 9.8.

effectful-plugin-1.1.0.1 (2023-03-13)

  • Show accurate error message in GHC >= 9.4 if Effectful.Internal.Effect is not found.

effectful-plugin-1.1.0.0 (2023-01-23)

  • Add support for GHC 9.4 and 9.6.

effectful-plugin-1.0.0.0 (2022-07-13)

  • Initial release.