[project @ 2005-02-01 00:52:20 by ross]
[ghc-base.git] / Data / STRef.hs
index e25e8b5..3edfb87 100644 (file)
@@ -24,6 +24,7 @@ module Data.STRef (
 import Prelude
 
 #ifdef __GLASGOW_HASKELL__
+import GHC.ST
 import GHC.STRef
 #endif
 
@@ -31,7 +32,11 @@ import GHC.STRef
 import Hugs.ST
 #endif
 
-import Data.Dynamic
+import Data.Typeable
 
-#include "Dynamic.h"
+#include "Typeable.h"
 INSTANCE_TYPEABLE2(STRef,stRefTc,"STRef")
+
+-- |Mutate the contents of an 'STRef'
+modifySTRef :: STRef s a -> (a -> a) -> ST s ()
+modifySTRef ref f = writeSTRef ref . f =<< readSTRef ref