Hello Lyle,

Thursday, September 15, 2005, 10:50:30 PM, you wrote:

>>   z := *x + *y   -- translated to { x' <- readIORef x; y' <- readIORef y; 
>> writeIORef z (x'+y') }
>>
LK> Right, I realize my suggestion is the same as Ben's.  I just prefer a 
LK> more succinct notation, like special brackets instead of a keyword.  I 
LK> like your idea about IORefs.  I think it should work as well for 
LK> STRefs... perhaps it needs to belong to a type class, in a way?

of course

class Ref c a where
  new :: a -> IO (c a)
  get :: c a -> IO a
  set :: c a -> a -> IO ()



-- 
Best regards,
 Bulat                            mailto:[EMAIL PROTECTED]



_______________________________________________
Haskell mailing list
Haskell@haskell.org
http://www.haskell.org/mailman/listinfo/haskell

Reply via email to