Re: [Haskell] strict vs. lazy state threads

2005-07-31 Thread Albert Lai
Wolfgang Jeltsch <[EMAIL PROTECTED]> writes: > The problem is that I cannot find an exact specification about what strict > and > lazy means in conjunction with state threads. This example shows a difference: import Control.Monad.ST.Strict -- try Lazy instead of Strict example :: (fo

[Haskell] strict vs. lazy state threads

2005-07-26 Thread Wolfgang Jeltsch
Hello, http://haskell.org/ghc/docs/latest/html/libraries/base/Control.Monad.ST.html says about the module Control.Monad.ST: This library provides support for strict state threads, as described in the PLDI '94 paper by John Launchbury and Simon Peyton Jones Lazy State Threads. I cann