
On Sunday 11 December 2005 06:54 pm, Joel Reymont wrote:
Thank you Andrew! Does it have any effect on performance? Is there a speed up of any sort from not passing parameters?
Shooting from the hip here, but I doubt it -- AFAIK it all gets lambda-lifted in the compiler anyway.
On Dec 11, 2005, at 11:50 PM, ajb@spamcop.net wrote:
Good, but even better is this:
writeLoop :: (Event a -> IO ()) -> Handle -> (SSL, BIO, BIO) -> IO () writeLoop post h ssl = loop where loop = do handle (\e -> post $ NetworkError e) $ do cmd <- read h ssl post $! Cmd $! cmd loop
Avoiding parameter passing can make your code a lot easier to read.
_______________________________________________ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe