Discussion about Template Haskell
template-haskell.haskell.org
(
List home) (
Recent threads) (
38 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.
- This list contains about 752 messages, beginning Jan 2003
- This list doesn't seem to be active
Discussion about Template Haskell
April 2006
Dimitry Golubovsky — 114421482605 Apr 2006
Why there isn't one? At least in "latest" (6.4.x), only instance Ppr Info shows up. It might be useful to be able to print raw results o...
Simon Peyton-Jones — 114466930710 Apr 2006
I've no idea. It certainly seems that Language.Haskell.TH.PprLib implements a pretty-printing Doc type that does renaming as it goes. I guess that...
Simon Peyton-Jones — 114466948010 Apr 2006
No very good reason. You can always use 'ppr'. Neverthless, since the rest of Exp is in Show, I'll add Info too. Simon...
Andy Gill — 114534699618 Apr 2006*
Fellow Templaters, Why does test2 () = runQ [| foldr f z xs |] (f,z,xs) = undefined compile fine, but test2 () = runQ [| foldr f z xs ...
Oleg Mürk — 114593682325 Apr 2006*
Hello, I have the following problem. I'd like to infer types of local bindings using 'reify': testValue let a = 10 in $(do VarI _ t _ _ ...