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
extendInstEnvList :: InstEnv -> [Instance] -> InstEnvSource
instEnvElts :: InstEnv -> [Instance]Source
roughMatchTcs :: [Type] -> [Maybe Name]Source