polysemy-plugin-0.4.3.1: Disambiguate obvious uses of effects.
Safe HaskellNone
LanguageHaskell2010

Polysemy.Plugin.Fundep.Unification

Synopsis

Documentation

data SolveContext Source #

The context in which we're attempting to solve a constraint.

Constructors

FunctionDef (Set TyVar)

In the context of a function definition. The Set TyVar is all of the skolems that exist in the [G] constraints for this function.

InterpreterUse Bool (Set TyVar)

In the context of running an interpreter. The Bool corresponds to whether we are only trying to solve a single Member constraint right now. If so, we *must* produce a unification wanted.

mustUnify :: SolveContext -> Bool Source #

Depending on the context in which we're solving a constraint, we may or may not want to force a unification of effects. For example, when defining user code whose type is Member (State Int) r => ..., if we see get :: Sem r s, we should unify s ~ Int.

unify Source #

Arguments

:: SolveContext 
-> Type

wanted

-> Type

given

-> Maybe TCvSubst 

Determine whether or not two effects are unifiable.

All free variables in [W] constraints are considered skolems, and thus are not allowed to unify with anything but themselves. This properly handles all cases in which we are unifying ambiguous [W] constraints (which are true type variables) against [G] constraints.

data Unification Source #

A wrapper for two types that we want to say have been unified.

Constructors

Unification 

newtype OrdType Source #

Types don't have Eq or Ord instances by default, even though there are functions in GHC that implement these operations. This newtype gives us those instances.

Constructors

OrdType 

Fields

Instances

Instances details
Eq OrdType Source # 
Instance details

Defined in Polysemy.Plugin.Fundep.Unification

Methods

(==) :: OrdType -> OrdType -> Bool #

(/=) :: OrdType -> OrdType -> Bool #

Ord OrdType Source # 
Instance details

Defined in Polysemy.Plugin.Fundep.Unification

unzipNewWanteds :: Set Unification -> [(Unification, Ct)] -> ([Unification], [Ct]) Source #

Filter out the unifications we've already emitted, and then give back the things we should put into the S.Set Unification, and the new constraints we should emit.