blob: b3c4888ad18a56376ef79313cb91bf51990396d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
-----------------------------------------------------------------------------
-- |
-- Module : Data.STRef
-- Copyright : (c) The University of Glasgow 2001
-- License : BSD-style (see the file libraries/core/LICENSE)
--
-- Maintainer : libraries@haskell.org
-- Stability : experimental
-- Portability : non-portable (requires non-portable module ST)
--
-- $Id: STRef.hs,v 1.4 2002/04/24 16:31:40 simonmar Exp $
--
-- Mutable references in the ST monad.
--
-----------------------------------------------------------------------------
module Data.STRef (
STRef, -- abstract, instance Eq
newSTRef, -- :: a -> ST s (STRef s a)
readSTRef, -- :: STRef s a -> ST s a
writeSTRef, -- :: STRef s a -> a -> ST s ()
modifySTRef -- :: STRef s a -> (a -> a) -> ST s ()
) where
import Prelude
#ifdef __GLASGOW_HASKELL__
import GHC.STRef
#endif
import Data.Dynamic
#include "Dynamic.h"
INSTANCE_TYPEABLE2(STRef,stRefTc,"STRef")
|