Discussion about Template Haskell
template-haskell.haskell.org
(
List home) (
Recent threads) (
40 other Haskell lists)
Subscription Options
- RSS or Atom: Read-only subscription using a browser or aggregator. This is the recommended way if you don't need to send messages to the list. You can learn more about feed syndication and clients here.
- Conventional: All messages are delivered to your mail address, and you can reply. To subscribe, send an email to the list's subscribe address with "subscribe" in the subject line, or visit the list's homepage here.
- Low traffic list: less than 3 messages per day
- This list contains about 753 messages, beginning Jan 2003
- 0 messages added yesterday
Discussion about Template Haskell
April 2005
Lemmih — 111234251501 Apr 2005
Greetings, I noticed this code in Language.Haskell.TH.Ppr:shouldn't it be:...
WANG Meng — 111236051801 Apr 2005
Hi, I am trying to write a function which does reification on its parameters. What I understand is that the reify below will get the type information ...
Simon Peyton-Jones — 111245467802 Apr 2005*
It should be, but it isn't (yet, anyway). It's one of those straightforward but tiresome jobs I have not gotten around to. I'll do it if e...
Simon Peyton-Jones — 111259476604 Apr 2005
It looks to me as if the where clause should be indented in all contexts. So I've added the 'nest nestDepth' in the defn of where_clause. ...
WANG Meng — 111265933205 Apr 2005
Hi All, When I am trying to define the following program: test x = [|x|] y = test (Just True) The compiler will complain that Maybe Bool is ...
Simon Peyton-Jones — 111266812705 Apr 2005
Yes you can make new instances of Lift. The class itself is defined in Language.Haskell.TH.Syntax. SimonLift?...
kyra — 111420007622 Apr 2005
I have the following Haskell modules: <genCG.hs> {-# OPTIONS -fglasgow-exts #-} module GenCG where gdecls pbname pbniname = [d| valGetter p...
kyra — 111420200222 Apr 2005
If I simply try the following: <genCG.hs> {-# OPTIONS -fglasgow-exts #-} module GenCG where gdecls pbname pbniname = [d| valGetter pbname =...
kyra — 111420266622 Apr 2005
I realize that my previous TH programs were incorrect. But my compiant is about GHC not reporting something like "Multiple declarations......
Andre Pang — 111442462125 Apr 2005
Hi all, I've run into the same problem as Sean Seefried, namely that I'd like to profile executables built with Template Haskell: http://www.h...