Hoogle Search
Within LTS Haskell 24.18 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
base-prelude BasePrelude Return the current value stored in a TVar. This is equivalent to
readTVarIO = atomically . readTVar
but works much faster, because it doesn't perform a complete transaction, it just reads the current value of the TVar. writeTVar :: TVar a -> a -> STM ()base-prelude BasePrelude Write the supplied value into a TVar.
-
citeproc Citeproc.Types No documentation available.
TextVariable :: VariableForm -> Variable -> TextTypeciteproc Citeproc.Types No documentation available.
addFontVariant :: CiteprocOutput a => FontVariant -> a -> aciteproc Citeproc.Types No documentation available.
formatFontVariant :: Formatting -> Maybe FontVariantciteproc Citeproc.Types No documentation available.
inspectTVar :: forall (n :: Type -> Type) a . ModelTVar n a -> Invariant n adejafu Test.DejaFu Read the content of a TVar. This is essentially readTVar.
inspectTVar :: forall (n :: Type -> Type) a . ModelTVar n a -> Invariant n adejafu Test.DejaFu.Conc Read the content of a TVar. This is essentially readTVar.
IInspectTVar :: ModelTVar n a -> (a -> IAction n) -> IAction (n :: Type -> Type)dejafu Test.DejaFu.Conc.Internal.Common No documentation available.
data
ModelTVar (n :: Type -> Type) adejafu Test.DejaFu.Conc.Internal.STM A TVar is modelled as a unique ID and a reference holding a value.