Data.STRef.Lazy
| Copyright | (c) The University of Glasgow 2001 | 
|---|---|
| License | BSD-style (see the file libraries/base/LICENSE) | 
| Maintainer | [email protected] | 
| Stability | experimental | 
| Portability | non-portable (uses Control.Monad.ST.Lazy) | 
| Safe Haskell | Safe | 
| Language | Haskell2010 | 
Contents
Description
Mutable references in the lazy ST monad.
STRefs
a value of type STRef s a is a mutable variable in state thread s, containing a value of type a
>>> :{
runST (do
    ref <- newSTRef "hello"
    x <- readSTRef ref
    writeSTRef ref (x ++ "world")
    readSTRef ref )
:}
"helloworld"
Instances
newSTRef :: a -> ST s (STRef s a) Source
readSTRef :: STRef s a -> ST s a Source
writeSTRef :: STRef s a -> a -> ST s () Source
modifySTRef :: STRef s a -> (a -> a) -> ST s () Source
    © The University of Glasgow and others
Licensed under a BSD-style license (see top of the page).
    https://downloads.haskell.org/~ghc/8.10.2/docs/html/libraries/base-4.14.1.0/Data-STRef-Lazy.html