template-haskell-2.4.0.1Source codeContentsIndex
Language.Haskell.TH
Synopsis
data Q a
runQ :: Quasi m => Q a -> m a
report :: Bool -> String -> Q ()
recover :: Q a -> Q a -> Q a
reify :: Name -> Q Info
location :: Q Loc
runIO :: IO a -> Q a
data Name
mkName :: String -> Name
newName :: String -> Q Name
nameBase :: Name -> String
nameModule :: Name -> Maybe String
tupleTypeName :: Int -> Name
tupleDataName :: Int -> Name
data Dec
= FunD Name [Clause]
| ValD Pat Body [Dec]
| DataD Cxt Name [TyVarBndr] [Con] [Name]
| NewtypeD Cxt Name [TyVarBndr] Con [Name]
| TySynD Name [TyVarBndr] Type
| ClassD Cxt Name [TyVarBndr] [FunDep] [Dec]
| InstanceD Cxt Type [Dec]
| SigD Name Type
| ForeignD Foreign
| PragmaD Pragma
| FamilyD FamFlavour Name [TyVarBndr] (Maybe Kind)
| DataInstD Cxt Name [Type] [Con] [Name]
| NewtypeInstD Cxt Name [Type] Con [Name]
| TySynInstD Name [Type] Type
data Exp
= VarE Name
| ConE Name
| LitE Lit
| AppE Exp Exp
| InfixE (Maybe Exp) Exp (Maybe Exp)
| LamE [Pat] Exp
| TupE [Exp]
| CondE Exp Exp Exp
| LetE [Dec] Exp
| CaseE Exp [Match]
| DoE [Stmt]
| CompE [Stmt]
| ArithSeqE Range
| ListE [Exp]
| SigE Exp Type
| RecConE Name [FieldExp]
| RecUpdE Exp [FieldExp]
data Con
= NormalC Name [StrictType]
| RecC Name [VarStrictType]
| InfixC StrictType Name StrictType
| ForallC [TyVarBndr] Cxt Con
data Type
= ForallT [TyVarBndr] Cxt Type
| VarT Name
| ConT Name
| TupleT Int
| ArrowT
| ListT
| AppT Type Type
| SigT Type Kind
data TyVarBndr
= PlainTV Name
| KindedTV Name Kind
data Kind
= StarK
| ArrowK Kind Kind
type Cxt = [Pred]
data Pred
= ClassP Name [Type]
| EqualP Type Type
data Match = Match Pat Body [Dec]
data Clause = Clause [Pat] Body [Dec]
data Body
= GuardedB [(Guard, Exp)]
| NormalB Exp
data Guard
= NormalG Exp
| PatG [Stmt]
data Stmt
= BindS Pat Exp
| LetS [Dec]
| NoBindS Exp
| ParS [[Stmt]]
data Range
= FromR Exp
| FromThenR Exp Exp
| FromToR Exp Exp
| FromThenToR Exp Exp Exp
data Lit
= CharL Char
| StringL String
| IntegerL Integer
| RationalL Rational
| IntPrimL Integer
| WordPrimL Integer
| FloatPrimL Rational
| DoublePrimL Rational
data Pat
= LitP Lit
| VarP Name
| TupP [Pat]
| ConP Name [Pat]
| InfixP Pat Name Pat
| TildeP Pat
| BangP Pat
| AsP Name Pat
| WildP
| RecP Name [FieldPat]
| ListP [Pat]
| SigP Pat Type
type FieldExp = (Name, Exp)
type FieldPat = (Name, Pat)
data Strict
= IsStrict
| NotStrict
data Foreign
= ImportF Callconv Safety String Name Type
| ExportF Callconv String Name Type
data Callconv
= CCall
| StdCall
data Safety
= Unsafe
| Safe
| Threadsafe
data Pragma
= InlineP Name InlineSpec
| SpecialiseP Name Type (Maybe InlineSpec)
data InlineSpec = InlineSpec Bool Bool (Maybe (Bool, Int))
data FunDep = FunDep [Name] [Name]
data FamFlavour
= TypeFam
| DataFam
data Info
= ClassI Dec
| ClassOpI Name Type Name Fixity
| TyConI Dec
| PrimTyConI Name Int Bool
| DataConI Name Type Name Fixity
| VarI Name Type (Maybe Dec) Fixity
| TyVarI Name Type
data Loc = Loc {
loc_filename :: String
loc_package :: String
loc_module :: String
loc_start :: CharPos
loc_end :: CharPos
}
data Fixity = Fixity Int FixityDirection
data FixityDirection
= InfixL
| InfixR
| InfixN
defaultFixity :: Fixity
maxPrecedence :: Int
type InfoQ = Q Info
type ExpQ = Q Exp
type DecQ = Q Dec
type ConQ = Q Con
type TypeQ = Q Type
type CxtQ = Q Cxt
type PredQ = Q Pred
type MatchQ = Q Match
type ClauseQ = Q Clause
type BodyQ = Q Body
type GuardQ = Q Guard
type StmtQ = Q Stmt
type RangeQ = Q Range
type StrictTypeQ = Q StrictType
type VarStrictTypeQ = Q VarStrictType
type PatQ = Q Pat
type FieldPatQ = Q FieldPat
type InlineSpecQ = Q InlineSpec
intPrimL :: Integer -> Lit
wordPrimL :: Integer -> Lit
floatPrimL :: Rational -> Lit
doublePrimL :: Rational -> Lit
integerL :: Integer -> Lit
rationalL :: Rational -> Lit
charL :: Char -> Lit
stringL :: String -> Lit
litP :: Lit -> PatQ
varP :: Name -> PatQ
tupP :: [PatQ] -> PatQ
conP :: Name -> [PatQ] -> PatQ
infixP :: PatQ -> Name -> PatQ -> PatQ
tildeP :: PatQ -> PatQ
bangP :: PatQ -> PatQ
asP :: Name -> PatQ -> PatQ
wildP :: PatQ
recP :: Name -> [FieldPatQ] -> PatQ
listP :: [PatQ] -> PatQ
sigP :: PatQ -> TypeQ -> PatQ
fieldPat :: Name -> PatQ -> FieldPatQ
bindS :: PatQ -> ExpQ -> StmtQ
letS :: [DecQ] -> StmtQ
noBindS :: ExpQ -> StmtQ
parS :: [[StmtQ]] -> StmtQ
fromR :: ExpQ -> RangeQ
fromThenR :: ExpQ -> ExpQ -> RangeQ
fromToR :: ExpQ -> ExpQ -> RangeQ
fromThenToR :: ExpQ -> ExpQ -> ExpQ -> RangeQ
normalB :: ExpQ -> BodyQ
guardedB :: [Q (Guard, Exp)] -> BodyQ
normalG :: ExpQ -> GuardQ
normalGE :: ExpQ -> ExpQ -> Q (Guard, Exp)
patG :: [StmtQ] -> GuardQ
patGE :: [StmtQ] -> ExpQ -> Q (Guard, Exp)
match :: PatQ -> BodyQ -> [DecQ] -> MatchQ
clause :: [PatQ] -> BodyQ -> [DecQ] -> ClauseQ
dyn :: String -> Q Exp
global :: Name -> ExpQ
varE :: Name -> ExpQ
conE :: Name -> ExpQ
litE :: Lit -> ExpQ
appE :: ExpQ -> ExpQ -> ExpQ
infixE :: Maybe ExpQ -> ExpQ -> Maybe ExpQ -> ExpQ
infixApp :: ExpQ -> ExpQ -> ExpQ -> ExpQ
sectionL :: ExpQ -> ExpQ -> ExpQ
sectionR :: ExpQ -> ExpQ -> ExpQ
lamE :: [PatQ] -> ExpQ -> ExpQ
lam1E :: PatQ -> ExpQ -> ExpQ
tupE :: [ExpQ] -> ExpQ
condE :: ExpQ -> ExpQ -> ExpQ -> ExpQ
letE :: [DecQ] -> ExpQ -> ExpQ
caseE :: ExpQ -> [MatchQ] -> ExpQ
doE :: [StmtQ] -> ExpQ
compE :: [StmtQ] -> ExpQ
arithSeqE :: RangeQ -> ExpQ
appsE :: [ExpQ] -> ExpQ
fromE :: ExpQ -> ExpQ
fromThenE :: ExpQ -> ExpQ -> ExpQ
fromToE :: ExpQ -> ExpQ -> ExpQ
fromThenToE :: ExpQ -> ExpQ -> ExpQ -> ExpQ
listE :: [ExpQ] -> ExpQ
sigE :: ExpQ -> TypeQ -> ExpQ
recConE :: Name -> [Q (Name, Exp)] -> ExpQ
recUpdE :: ExpQ -> [Q (Name, Exp)] -> ExpQ
stringE :: String -> ExpQ
fieldExp :: Name -> ExpQ -> Q (Name, Exp)
valD :: PatQ -> BodyQ -> [DecQ] -> DecQ
funD :: Name -> [ClauseQ] -> DecQ
tySynD :: Name -> [TyVarBndr] -> TypeQ -> DecQ
dataD :: CxtQ -> Name -> [TyVarBndr] -> [ConQ] -> [Name] -> DecQ
newtypeD :: CxtQ -> Name -> [TyVarBndr] -> ConQ -> [Name] -> DecQ
classD :: CxtQ -> Name -> [TyVarBndr] -> [FunDep] -> [DecQ] -> DecQ
instanceD :: CxtQ -> TypeQ -> [DecQ] -> DecQ
sigD :: Name -> TypeQ -> DecQ
forImpD :: Callconv -> Safety -> String -> Name -> TypeQ -> DecQ
pragInlD :: Name -> InlineSpecQ -> DecQ
pragSpecD :: Name -> TypeQ -> DecQ
familyNoKindD :: FamFlavour -> Name -> [TyVarBndr] -> DecQ
familyKindD :: FamFlavour -> Name -> [TyVarBndr] -> Kind -> DecQ
dataInstD :: CxtQ -> Name -> [TypeQ] -> [ConQ] -> [Name] -> DecQ
newtypeInstD :: CxtQ -> Name -> [TypeQ] -> ConQ -> [Name] -> DecQ
tySynInstD :: Name -> [TypeQ] -> TypeQ -> DecQ
cxt :: [PredQ] -> CxtQ
classP :: Name -> [TypeQ] -> PredQ
equalP :: TypeQ -> TypeQ -> PredQ
normalC :: Name -> [StrictTypeQ] -> ConQ
recC :: Name -> [VarStrictTypeQ] -> ConQ
infixC :: Q (Strict, Type) -> Name -> Q (Strict, Type) -> ConQ
forallT :: [TyVarBndr] -> CxtQ -> TypeQ -> TypeQ
varT :: Name -> TypeQ
conT :: Name -> TypeQ
appT :: TypeQ -> TypeQ -> TypeQ
arrowT :: TypeQ
listT :: TypeQ
tupleT :: Int -> TypeQ
sigT :: TypeQ -> Kind -> TypeQ
isStrict :: Q Strict
notStrict :: Q Strict
strictType :: Q Strict -> TypeQ -> StrictTypeQ
varStrictType :: Name -> StrictTypeQ -> VarStrictTypeQ
cCall :: Callconv
stdCall :: Callconv
unsafe :: Safety
safe :: Safety
threadsafe :: Safety
inlineSpecNoPhase :: Bool -> Bool -> InlineSpecQ
inlineSpecPhase :: Bool -> Bool -> Bool -> Int -> InlineSpecQ
typeFam :: FamFlavour
dataFam :: FamFlavour
class Ppr a where
ppr :: a -> Doc
ppr_list :: [a] -> Doc
pprint :: Ppr a => a -> String
pprExp :: Precedence -> Exp -> Doc
pprLit :: Precedence -> Lit -> Doc
pprPat :: Precedence -> Pat -> Doc
pprParendType :: Type -> Doc
Documentation
data Q a Source
show/hide Instances
runQ :: Quasi m => Q a -> m aSource
report :: Bool -> String -> Q ()Source
recover :: Q a -> Q a -> Q aSource
reify :: Name -> Q InfoSource
reify looks up information about the Name
location :: Q LocSource
location gives you the Location at which this computation is spliced.
runIO :: IO a -> Q aSource

The runIO function lets you run an I/O computation in the Q monad. Take care: you are guaranteed the ordering of calls to runIO within a single Q computation, but not about the order in which splices are run.

Note: for various murky reasons, stdout and stderr handles are not necesarily flushed when the compiler finishes running, so you should flush them yourself.

data Name Source
show/hide Instances
mkName :: String -> NameSource
newName :: String -> Q NameSource
nameBase :: Name -> StringSource
nameModule :: Name -> Maybe StringSource
tupleTypeName :: Int -> NameSource
tupleDataName :: Int -> NameSource
data Dec Source
Constructors
FunD Name [Clause]
ValD Pat Body [Dec]
DataD Cxt Name [TyVarBndr] [Con] [Name]
NewtypeD Cxt Name [TyVarBndr] Con [Name]
TySynD Name [TyVarBndr] Type
ClassD Cxt Name [TyVarBndr] [FunDep] [Dec]
InstanceD Cxt Type [Dec]
SigD Name Type
ForeignD Foreign
PragmaD Pragma
FamilyD FamFlavour Name [TyVarBndr] (Maybe Kind)
DataInstD Cxt Name [Type] [Con] [Name]
NewtypeInstD Cxt Name [Type] Con [Name]
TySynInstD Name [Type] Type
show/hide Instances
data Exp Source
The CompE constructor represents a list comprehension, and takes a [Stmt]. The result expression of the comprehension is the *last* of these, and should be a NoBindS. E.g. [ f x | x <- xs ] is represented by CompE [BindS (VarP x) (VarE xs), NoBindS (AppE (VarE f) (VarE x))]
Constructors
VarE Name
ConE Name
LitE Lit
AppE Exp Exp
InfixE (Maybe Exp) Exp (Maybe Exp)
LamE [Pat] Exp
TupE [Exp]
CondE Exp Exp Exp
LetE [Dec] Exp
CaseE Exp [Match]
DoE [Stmt]
CompE [Stmt]
ArithSeqE Range
ListE [Exp]
SigE Exp Type
RecConE Name [FieldExp]
RecUpdE Exp [FieldExp]
show/hide Instances
data Con Source
Constructors
NormalC Name [StrictType]
RecC Name [VarStrictType]
InfixC StrictType Name StrictType
ForallC [TyVarBndr] Cxt Con
show/hide Instances
data Type Source
Constructors
ForallT [TyVarBndr] Cxt Type
VarT Name
ConT Name
TupleT Int
ArrowT
ListT
AppT Type Type
SigT Type Kind
show/hide Instances
data TyVarBndr Source
Constructors
PlainTV Name
KindedTV Name Kind
show/hide Instances
data Kind Source
Constructors
StarK
ArrowK Kind Kind
show/hide Instances
type Cxt = [Pred]Source
data Pred Source
Constructors
ClassP Name [Type]
EqualP Type Type
show/hide Instances
data Match Source
Constructors
Match Pat Body [Dec]
show/hide Instances
data Clause Source
Constructors
Clause [Pat] Body [Dec]
show/hide Instances
data Body Source
Constructors
GuardedB [(Guard, Exp)]
NormalB Exp
show/hide Instances
data Guard Source
Constructors
NormalG Exp
PatG [Stmt]
show/hide Instances
data Stmt Source
Constructors
BindS Pat Exp
LetS [Dec]
NoBindS Exp
ParS [[Stmt]]
show/hide Instances
data Range Source
Constructors
FromR Exp
FromThenR Exp Exp
FromToR Exp Exp
FromThenToR Exp Exp Exp
show/hide Instances
data Lit Source
Constructors
CharL Char
StringL String
IntegerL Integer
RationalL Rational
IntPrimL Integer
WordPrimL Integer
FloatPrimL Rational
DoublePrimL Rational
show/hide Instances
data Pat Source
Constructors
LitP Lit
VarP Name
TupP [Pat]
ConP Name [Pat]
InfixP Pat Name Pat
TildeP Pat
BangP Pat
AsP Name Pat
WildP
RecP Name [FieldPat]
ListP [Pat]
SigP Pat Type
show/hide Instances
type FieldExp = (Name, Exp)Source
type FieldPat = (Name, Pat)Source
data Strict Source
Constructors
IsStrict
NotStrict
show/hide Instances
data Foreign Source
Constructors
ImportF Callconv Safety String Name Type
ExportF Callconv String Name Type
show/hide Instances
data Callconv Source
Constructors
CCall
StdCall
show/hide Instances
data Safety Source
Constructors
Unsafe
Safe
Threadsafe
show/hide Instances
data Pragma Source
Constructors
InlineP Name InlineSpec
SpecialiseP Name Type (Maybe InlineSpec)
show/hide Instances
data InlineSpec Source
Constructors
InlineSpec Bool Bool (Maybe (Bool, Int))
show/hide Instances
data FunDep Source
Constructors
FunDep [Name] [Name]
show/hide Instances
data FamFlavour Source
Constructors
TypeFam
DataFam
show/hide Instances
data Info Source
Constructors
ClassI Dec
ClassOpI Name Type Name Fixity
TyConI Dec
PrimTyConI Name Int Bool
DataConI Name Type Name Fixity
VarI Name Type (Maybe Dec) Fixity
TyVarI Name Type
show/hide Instances
data Loc Source
Constructors
Loc
loc_filename :: String
loc_package :: String
loc_module :: String
loc_start :: CharPos
loc_end :: CharPos
data Fixity Source
Constructors
Fixity Int FixityDirection
show/hide Instances
data FixityDirection Source
Constructors
InfixL
InfixR
InfixN
show/hide Instances
defaultFixity :: FixitySource
maxPrecedence :: IntSource
type InfoQ = Q InfoSource
type ExpQ = Q ExpSource
type DecQ = Q DecSource
type ConQ = Q ConSource
type TypeQ = Q TypeSource
type CxtQ = Q CxtSource
type PredQ = Q PredSource
type MatchQ = Q MatchSource
type ClauseQ = Q ClauseSource
type BodyQ = Q BodySource
type GuardQ = Q GuardSource
type StmtQ = Q StmtSource
type RangeQ = Q RangeSource
type StrictTypeQ = Q StrictTypeSource
type VarStrictTypeQ = Q VarStrictTypeSource
type PatQ = Q PatSource
type FieldPatQ = Q FieldPatSource
type InlineSpecQ = Q InlineSpecSource
intPrimL :: Integer -> LitSource
wordPrimL :: Integer -> LitSource
floatPrimL :: Rational -> LitSource
doublePrimL :: Rational -> LitSource
integerL :: Integer -> LitSource
rationalL :: Rational -> LitSource
charL :: Char -> LitSource
stringL :: String -> LitSource
litP :: Lit -> PatQSource
varP :: Name -> PatQSource
tupP :: [PatQ] -> PatQSource
conP :: Name -> [PatQ] -> PatQSource
infixP :: PatQ -> Name -> PatQ -> PatQSource
tildeP :: PatQ -> PatQSource
bangP :: PatQ -> PatQSource
asP :: Name -> PatQ -> PatQSource
wildP :: PatQSource
recP :: Name -> [FieldPatQ] -> PatQSource
listP :: [PatQ] -> PatQSource
sigP :: PatQ -> TypeQ -> PatQSource
fieldPat :: Name -> PatQ -> FieldPatQSource
bindS :: PatQ -> ExpQ -> StmtQSource
letS :: [DecQ] -> StmtQSource
noBindS :: ExpQ -> StmtQSource
parS :: [[StmtQ]] -> StmtQSource
fromR :: ExpQ -> RangeQSource
fromThenR :: ExpQ -> ExpQ -> RangeQSource
fromToR :: ExpQ -> ExpQ -> RangeQSource
fromThenToR :: ExpQ -> ExpQ -> ExpQ -> RangeQSource
normalB :: ExpQ -> BodyQSource
guardedB :: [Q (Guard, Exp)] -> BodyQSource
normalG :: ExpQ -> GuardQSource
normalGE :: ExpQ -> ExpQ -> Q (Guard, Exp)Source
patG :: [StmtQ] -> GuardQSource
patGE :: [StmtQ] -> ExpQ -> Q (Guard, Exp)Source
match :: PatQ -> BodyQ -> [DecQ] -> MatchQSource
clause :: [PatQ] -> BodyQ -> [DecQ] -> ClauseQSource
dyn :: String -> Q ExpSource
global :: Name -> ExpQSource
varE :: Name -> ExpQSource
conE :: Name -> ExpQSource
litE :: Lit -> ExpQSource
appE :: ExpQ -> ExpQ -> ExpQSource
infixE :: Maybe ExpQ -> ExpQ -> Maybe ExpQ -> ExpQSource
infixApp :: ExpQ -> ExpQ -> ExpQ -> ExpQSource
sectionL :: ExpQ -> ExpQ -> ExpQSource
sectionR :: ExpQ -> ExpQ -> ExpQSource
lamE :: [PatQ] -> ExpQ -> ExpQSource
lam1E :: PatQ -> ExpQ -> ExpQSource
tupE :: [ExpQ] -> ExpQSource
condE :: ExpQ -> ExpQ -> ExpQ -> ExpQSource
letE :: [DecQ] -> ExpQ -> ExpQSource
caseE :: ExpQ -> [MatchQ] -> ExpQSource
doE :: [StmtQ] -> ExpQSource
compE :: [StmtQ] -> ExpQSource
arithSeqE :: RangeQ -> ExpQSource
appsE :: [ExpQ] -> ExpQSource
fromE :: ExpQ -> ExpQSource
fromThenE :: ExpQ -> ExpQ -> ExpQSource
fromToE :: ExpQ -> ExpQ -> ExpQSource
fromThenToE :: ExpQ -> ExpQ -> ExpQ -> ExpQSource
listE :: [ExpQ] -> ExpQSource
sigE :: ExpQ -> TypeQ -> ExpQSource
recConE :: Name -> [Q (Name, Exp)] -> ExpQSource
recUpdE :: ExpQ -> [Q (Name, Exp)] -> ExpQSource
stringE :: String -> ExpQSource
fieldExp :: Name -> ExpQ -> Q (Name, Exp)Source
valD :: PatQ -> BodyQ -> [DecQ] -> DecQSource
funD :: Name -> [ClauseQ] -> DecQSource
tySynD :: Name -> [TyVarBndr] -> TypeQ -> DecQSource
dataD :: CxtQ -> Name -> [TyVarBndr] -> [ConQ] -> [Name] -> DecQSource
newtypeD :: CxtQ -> Name -> [TyVarBndr] -> ConQ -> [Name] -> DecQSource
classD :: CxtQ -> Name -> [TyVarBndr] -> [FunDep] -> [DecQ] -> DecQSource
instanceD :: CxtQ -> TypeQ -> [DecQ] -> DecQSource
sigD :: Name -> TypeQ -> DecQSource
forImpD :: Callconv -> Safety -> String -> Name -> TypeQ -> DecQSource
pragInlD :: Name -> InlineSpecQ -> DecQSource
pragSpecD :: Name -> TypeQ -> DecQSource
familyNoKindD :: FamFlavour -> Name -> [TyVarBndr] -> DecQSource
familyKindD :: FamFlavour -> Name -> [TyVarBndr] -> Kind -> DecQSource
dataInstD :: CxtQ -> Name -> [TypeQ] -> [ConQ] -> [Name] -> DecQSource
newtypeInstD :: CxtQ -> Name -> [TypeQ] -> ConQ -> [Name] -> DecQSource
tySynInstD :: Name -> [TypeQ] -> TypeQ -> DecQSource
cxt :: [PredQ] -> CxtQSource
classP :: Name -> [TypeQ] -> PredQSource
equalP :: TypeQ -> TypeQ -> PredQSource
normalC :: Name -> [StrictTypeQ] -> ConQSource
recC :: Name -> [VarStrictTypeQ] -> ConQSource
infixC :: Q (Strict, Type) -> Name -> Q (Strict, Type) -> ConQSource
forallT :: [TyVarBndr] -> CxtQ -> TypeQ -> TypeQSource
varT :: Name -> TypeQSource
conT :: Name -> TypeQSource
appT :: TypeQ -> TypeQ -> TypeQSource
arrowT :: TypeQSource
listT :: TypeQSource
tupleT :: Int -> TypeQSource
sigT :: TypeQ -> Kind -> TypeQSource
isStrict :: Q StrictSource
notStrict :: Q StrictSource
strictType :: Q Strict -> TypeQ -> StrictTypeQSource
varStrictType :: Name -> StrictTypeQ -> VarStrictTypeQSource
cCall :: CallconvSource
stdCall :: CallconvSource
unsafe :: SafetySource
safe :: SafetySource
threadsafe :: SafetySource
inlineSpecNoPhase :: Bool -> Bool -> InlineSpecQSource
inlineSpecPhase :: Bool -> Bool -> Bool -> Int -> InlineSpecQSource
typeFam :: FamFlavourSource
dataFam :: FamFlavourSource
class Ppr a whereSource
Methods
ppr :: a -> DocSource
ppr_list :: [a] -> DocSource
show/hide Instances
pprint :: Ppr a => a -> StringSource
pprExp :: Precedence -> Exp -> DocSource
pprLit :: Precedence -> Lit -> DocSource
pprPat :: Precedence -> Pat -> DocSource
pprParendType :: Type -> DocSource
Produced by Haddock version 2.6.1