th-desugar-1.14: Functions to desugar Template Haskell
Copyright(C) 2018 Richard Eisenberg
LicenseBSD-style (see LICENSE)
MaintainerRyan Scott
Stabilityexperimental
Portabilitynon-portable
Safe HaskellNone
LanguageHaskell2010

Language.Haskell.TH.Desugar.Subst

Description

Capture-avoiding substitutions on DTypes

Synopsis

Documentation

type DSubst = Map Name DType Source #

A substitution is just a map from names to types

Capture-avoiding substitution

substTy :: Quasi q => DSubst -> DType -> q DType Source #

Capture-avoiding substitution on types

substTyVarBndrs :: Quasi q => DSubst -> [DTyVarBndr flag] -> q (DSubst, [DTyVarBndr flag]) Source #

unionSubsts :: DSubst -> DSubst -> Maybe DSubst Source #

Computes the union of two substitutions. Fails if both subsitutions map the same variable to different types.

Matching a type template against a type

data IgnoreKinds Source #

Ignore kind annotations in matchTy?

Constructors

YesIgnore 
NoIgnore 

matchTy :: IgnoreKinds -> DType -> DType -> Maybe DSubst Source #

matchTy ign tmpl targ matches a type template tmpl against a type target targ. This returns a Map from names of type variables in the type template to types if the types indeed match up, or Nothing otherwise. In the Just case, it is guaranteed that every type variable mentioned in the template is mapped by the returned substitution.

The first argument ign tells matchTy whether to ignore kind signatures in the template. A kind signature in the template might mean that a type variable has a more restrictive kind than otherwise possible, and that mapping that type variable to a type of a different kind could be disastrous. So, if we don't ignore kind signatures, this function returns Nothing if the template has a signature anywhere. If we do ignore kind signatures, it's possible the returned map will be ill-kinded. Use at your own risk.