Tagged Questions

Template Haskell is a GHC extension to Haskell that adds compile-time meta-programming facilities. This allows users to write programs that generate or modify their program at compile time: a form of compile-time macros.

learn more… | top users | synonyms

13
votes
1answer
290 views

Why doesn't Safe Haskell support Template Haskell?

The documentation for Safe Haskell states: [...] Unfortunately Template Haskell can be used to subvert module boundaries and so could be used gain access to this constructor. [...] The use of the ...
11
votes
2answers
189 views

Preferred method for viewing code generated by Template Haskell

As you know, Template Haskell is used to generate various kinds of AST splices programmatically at compile-time. However, a splice can often be very opaque, and it is often difficult to discern what ...
11
votes
1answer
186 views

Get a Haskell record's field names as a list of strings?

Say I have the following: data Rec = Rec { alpha :: Int, beta :: Double, phi :: Float } sample = Rec 1 2.3 4.5 I understand Template Haskell & the reify function can get me ...
10
votes
1answer
128 views

Using Template Haskell, how can I splice the same type into multiple locations?

I'm defining instances of classes from vector-space for the OpenGL types, and to spare my typing muscles, I want to use Template Haskell to write a bunch of the instances for me. I started out small ...
10
votes
1answer
468 views

Force pre-computation of a constant

I have a constant declaration in Haskell -- can I force this to be evaluated ahead of time? I'm seeing some code that looks roughly like, myList = [(a, b), (c, d)] ... map (f . fst) myList take ...
8
votes
2answers
285 views

Polynomial factorization in Haskell

With hammar's help I have made a template Haskell bit which compiles $(zModP 5) to newtype Z5 = Z5 Int instance Additive.C Z5 where (Z5 x) + (Z5 y) = Z5 $ (x + y) `mod` 5 ... I'm now facing ...
7
votes
1answer
85 views

Template Haskell data declarations that derive Show

The following doesn't compile: import Language.Haskell.TH makeAlpha n = [d| data Alpha = Alpha $(conT n) deriving (Show, Read) |] I can't make out what the error means at all: Can't derive ...
7
votes
1answer
135 views

Haskell introspecting a record's field names and types

Based on a recent exchange, I've been convinced to use Template Haskell to generate some code to ensure compile-time type safety. I need to introspect record field names and types. I understand I can ...
7
votes
3answers
110 views

Template Haskell with record field name as variable?

I've got the following piece of code that implements a monad. I'm trying to use it to simplify the setting of fields with more complex logic later on. data Rec = Rec { alpha :: Int, beta :: ...
7
votes
1answer
151 views

How to get rid of $(…) and [| … |] syntax when using a Template Haskell function?

I'm trying to learn some Template Haskell. As an exercise, I wrote a function that can generate things like isLeft and isRight (inspired by this question). Here's my humble attempt: isA connam = do ...
7
votes
2answers
146 views

Shortening code by exploiting symmetry among multiple type class instances

Context I'm writing a Haskell module that represents SI prefixes: module Unit.SI.Prefix where Each SI prefix has a corresponding data type: data Kilo = Kilo deriving Show data Mega = Mega ...
6
votes
2answers
118 views

Emitting warnings from Template Haskell splices

I know that I can cause a compile-time error by calling fail from a splice, but is it possible to only generate a warning? In particular I would like it to be possible to turn this warning into an ...
5
votes
4answers
169 views

Convert a String to a Type Constructor in Haskell

Does anyone know if there's a function in Haskell which does something like this: "Int" -> Int "String" -> String "Bool" -> Bool ie. it takes a string representation of a type ...
5
votes
2answers
82 views

Template Haskell type quoting problems

The TemplateHaskell quoting documents two quotes ('') as the way to get the Name of a type: > ''String GHC.Base.String This works fine for this type (name). However, I can't find a way to make ...
5
votes
2answers
150 views

How to dynamically call a function which defined in multiple modules in the same signature

I've defined a lot of functions (say, 100+), each of which do a specific work but with the same signature. That is something like: module R001 (run) where run = <do-...> module R002 (run) where ...
5
votes
2answers
430 views

Is there any Template Haskell tutorial for someone who doesn't know Lisp?

I wanted to learn Template Haskell but all tutorials I find either assume that you learned lisp and know what lisp macros are, or that you know some cs theory jargon - things as splices, ...
5
votes
1answer
171 views

What manner of Haskell syntax is used in [$parseRoutes|/ Home GET|]?

I found this code on the front page of the Yesod project: import Yesod data HelloWorld = HelloWorld mkYesod "HelloWorld" [$parseRoutes|/ Home GET|] instance Yesod HelloWorld where approot _ = "" ...
5
votes
1answer
186 views

How can I easily see the output from a Template Haskell statement?

I have the following Template Haskell code in my module, which is part of a larger application. $(derive makeFoldable ''JStatement) I suspect that the generated instance of Foldable is not exactly ...
4
votes
1answer
160 views

Data constructor in template haskell

I'm trying to create the ring Z/n (like normal arithmetic, but modulo some integer). An example instance is Z4: instance Additive.C Z4 where zero = Z4 0 (Z4 x) + (Z4 y) = Z4 $ (x + y) `mod` 4 ...
4
votes
1answer
258 views

Local variables in Template Haskell declarations

I'm reading through pozorvlak's baby steps post on Template Haskell in an attempt to understand it myself, and I came across this section: Recall that we were trying to programmatically produce ...
3
votes
2answers
120 views

How to avoid extra indentation in Template Haskell declaration quotations?

I have a toy program: $ cat a.hs main = putStrLn "Toy example" $ runghc a.hs Toy example Let's add some Template Haskell to it: $ cat b.hs {-# LANGUAGE TemplateHaskell #-} id [d| main = putStrLn ...
3
votes
2answers
131 views

what's the correct way to have template haskell wrap a function with source information (e.g. line number)

Suppose I start with a function fromJust Nothing = error "fromJust got Nothing!" fromJust (Just x) = x Then, I want to add source information via Template Haskell for better error messages. Let's ...
2
votes
1answer
54 views

Haskell: How to tell if a type is an instance of class?

I'd like to create a Template Haskell function such that: $(isInstanceOf ''Read ''SomeType) will result in either True if SomeType is an instance of Read, and False otherwise. I tried to look at ...
2
votes
2answers
95 views

Dynamic dispatch, smart constructors, Template Haskell perhaps?

I'm looking at HaskellWiki > Existential type # Dynamic dispatch mechanism. And I'm thinking, there should be a way in Template Haskell to take this part: class Shape_ a where ... type Radius = ...
2
votes
2answers
144 views

Haskell — how to use the new 4-argument quasi quoter

It looks like the quasi quoter syntax has changed to now accept 4 arguments [ link ]. Has anyone used it yet? Thanks. I just want to build something really really simple, and the examples on the web ...
2
votes
1answer
129 views

TemplateHaskell and IO

Is there any proper way to make TH's functions safe if they use side effects? Say, I want to have a function that calls git in compile time and generates a version string: {-# LANGUAGE ...
1
vote
1answer
76 views

How to examine a quoted data constructor name in Template Haskell?

I'm trying to learn some Template Haskell. As an exercise, I wrote a function that can generate things like isLeft and isRight (inspired by this question). Here's my humble attempt: isA connam = do ...
1
vote
2answers
157 views

Template Haskell: zipn

I was reading a Template Haskell tutorial from archive.org since it was lost from haskell.org, and noticed that it is corrupted, as if random parts had been taken out. I was hoping to read about ...