 | ArrayRef-0.1.2: Unboxed references, dynamic arrays and more | Contents | Index |
|
| Data.Ref.LazyST | | Portability | GHC/Hugs | | Stability | experimental | | Maintainer | Bulat Ziganshin <Bulat.Ziganshin@gmail.com> |
|
|
|
|
|
| Description |
| Mutable boxed and unboxed references in the lazy ST monad.
|
|
| Synopsis |
|
|
|
|
| STRefs
|
|
| STURefs
|
|
| data STURef s a |
| Unboxed references in ST monad
| Instances | |
|
|
| newSTURef :: Unboxed a => a -> ST s (STURef s a) |
|
| readSTURef :: Unboxed a => STURef s a -> ST s a |
|
| writeSTURef :: Unboxed a => STURef s a -> a -> ST s () |
|
| modifySTURef :: Unboxed a => STURef s a -> (a -> a) -> ST s () |
|
| Produced by Haddock version 2.1.0 |