Safe Haskell | Safe-Infered |
---|
- type DFunId = Id
- data OverlapFlag
- = NoOverlap { }
- | OverlapOk { }
- | Incoherent { }
- data Instance = Instance {}
- pprInstance :: Instance -> SDoc
- pprInstanceHdr :: Instance -> SDoc
- pprInstances :: [Instance] -> SDoc
- instanceHead :: Instance -> ([TyVar], ThetaType, Class, [Type])
- mkLocalInstance :: DFunId -> OverlapFlag -> Instance
- mkImportedInstance :: Name -> [Maybe Name] -> DFunId -> OverlapFlag -> Instance
- instanceDFunId :: Instance -> DFunId
- setInstanceDFunId :: Instance -> DFunId -> Instance
- instanceRoughTcs :: Instance -> [Maybe Name]
- type InstEnv = UniqFM ClsInstEnv
- emptyInstEnv :: InstEnv
- extendInstEnv :: InstEnv -> Instance -> InstEnv
- overwriteInstEnv :: InstEnv -> Instance -> InstEnv
- extendInstEnvList :: InstEnv -> [Instance] -> InstEnv
- lookupUniqueInstEnv :: (InstEnv, InstEnv) -> Class -> [Type] -> Either Message (Instance, [Type])
- lookupInstEnv' :: InstEnv -> Class -> [Type] -> ([InstMatch], [Instance])
- lookupInstEnv :: (InstEnv, InstEnv) -> Class -> [Type] -> ([InstMatch], [Instance], Bool)
- instEnvElts :: InstEnv -> [Instance]
- classInstances :: (InstEnv, InstEnv) -> Class -> [Instance]
- instanceBindFun :: TyVar -> BindFlag
- instanceCantMatch :: [Maybe Name] -> [Maybe Name] -> Bool
- roughMatchTcs :: [Type] -> [Maybe Name]
Documentation
data OverlapFlag Source
NoOverlap | This instance must not overlap another |
OverlapOk | Silently ignore this instance if you find a more specific one that matches the constraint you are trying to resolve Example: constraint (Foo [Int]) instances (Foo [Int]) (Foo [a]) OverlapOk Since the second instance has the OverlapOk flag, the first instance will be chosen (otherwise its ambiguous which to choose) |
Incoherent | Like OverlapOk, but also ignore this instance if it doesn't match the constraint you are trying to resolve, but could match if the type variables in the constraint were instantiated Example: constraint (Foo [b])
instances (Foo [Int]) Incoherent
(Foo [a])
Without the Incoherent flag, we'd complain that
instantiating |
pprInstance :: Instance -> SDocSource
pprInstanceHdr :: Instance -> SDocSource
pprInstances :: [Instance] -> SDocSource
mkLocalInstance :: DFunId -> OverlapFlag -> InstanceSource
mkImportedInstance :: Name -> [Maybe Name] -> DFunId -> OverlapFlag -> InstanceSource
setInstanceDFunId :: Instance -> DFunId -> InstanceSource
instanceRoughTcs :: Instance -> [Maybe Name]Source
extendInstEnv :: InstEnv -> Instance -> InstEnvSource
overwriteInstEnv :: InstEnv -> Instance -> InstEnvSource
extendInstEnvList :: InstEnv -> [Instance] -> InstEnvSource
lookupUniqueInstEnv :: (InstEnv, InstEnv) -> Class -> [Type] -> Either Message (Instance, [Type])Source
Look up an instance in the given instance environment. The given class application must match exactly one instance and the match may not contain any flexi type variables. If the lookup is unsuccessful, yield 'Left errorMessage'.
instEnvElts :: InstEnv -> [Instance]Source
roughMatchTcs :: [Type] -> [Maybe Name]Source