Safe Haskell | Safe |
---|---|
Language | Haskell98 |
Synopsis
- pr :: QuasiQuoter
- pr1 :: QuasiQuoter
Documentation
pr :: QuasiQuoter Source #
A proxy value quasiquoter. [pr|T|]
will splice an expression
Proxy::Proxy T
, while [pr|A,B,C|]
will splice in a value of
Proxy :: Proxy [A,B,C]
.
pr1 :: QuasiQuoter Source #
Like pr
, but takes a single type, which is used to produce a
Proxy
for a single-element list containing only that type. This
is useful for passing a single type to a function that wants a list
of types.