| Copyright | (c) The University of Glasgow 2004 |
|---|---|
| License | BSD-style (see the file libraries/base/LICENSE) |
| Maintainer | [email protected] |
| Stability | experimental |
| Portability | non-portable (requires STM) |
| Safe Haskell | Trustworthy |
| Language | Haskell2010 |
data TVar a
readTVarIO :: TVar a -> IO a
writeTVar :: TVar a -> a -> STM ()
modifyTVar :: TVar a -> (a -> a) -> STM () Source
Mutate the contents of a TVar. N.B., this version is non-strict.
Since: stm-2.3
modifyTVar' :: TVar a -> (a -> a) -> STM () Source
Strict version of modifyTVar.
Since: stm-2.3
stateTVar :: TVar s -> (s -> (a, s)) -> STM a Source
Like modifyTVar' but the function is a simple state transition that can return a side value which is passed on as the result of the STM.
Since: stm-2.5.0
swapTVar :: TVar a -> a -> STM a Source
Swap the contents of a TVar for a new value.
Since: stm-2.3
registerDelay :: Int -> IO (TVar Bool)
mkWeakTVar :: TVar a -> IO () -> IO (Weak (TVar a)) Source
Make a Weak pointer to a TVar, using the second argument as a finalizer to run when TVar is garbage-collected
Since: stm-2.4.3
© The University of Glasgow and others
Licensed under a BSD-style license (see top of the page).
https://downloads.haskell.org/~ghc/9.12.1/docs/libraries/stm-2.5.3.1-9996/Control-Concurrent-STM-TVar.html