1
1
mirror of https://github.com/github/semantic.git synced 2024-12-22 06:11:49 +03:00

📝 RunEffect.

This commit is contained in:
Rob Rix 2017-12-21 09:54:48 -05:00
parent ebe2202de7
commit 6bd0550804

View File

@ -30,6 +30,7 @@ instance RunEffect f a => RunEffects '[f] a where
runEffects = runEffect
-- | A typeclass to interpret a single effect with some sensible defaults (defined per-effect).
class RunEffect f a where
type Result f a
type instance Result f a = a