Re: [Haskell-cafe] Learning GHC API

2013-08-02 Thread 14875
Hi,there's also a package in hackage called hint which is suitable for most cases. if you still want to know ghc api, take a look at a module named GHC, It contains a overview of whole ghc api http://lambda.haskell.org/platform/doc/current/ghc-api/GHC.html 2013/8/2 blackbox.dev.ml

Re: [Haskell-cafe] using network+conduit+tls for a client application?

2013-07-29 Thread 14875
there's a similar one for client http://hackage.haskell.org/package/http-conduit-browser/ 2013/7/29 Petr Pudlák petr@gmail.com Dear Haskellers, I wanted to write a small TLS application (connecting to IMAP over TLS) and it seemed natural to use conduit for that. I found the

Re: [Haskell-cafe] memoization

2013-07-22 Thread 14875
in this case, neither of them is memoized. because they don't have any data in expressions. memoized is for constants who have data structure in its expression 2013/7/22 Tom Ellis tom-lists-haskell-cafe-2...@jaguarpaw.co.uk On Mon, Jul 22, 2013 at 07:52:06PM +1200, Chris Wong wrote: A