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.

  1. readTVarIO :: TVar a -> IO a

    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.

  2. writeTVar :: TVar a -> a -> STM ()

    base-prelude BasePrelude

    Write the supplied value into a TVar.

  3. data FontVariant

    citeproc Citeproc.Types

    No documentation available.

  4. TextVariable :: VariableForm -> Variable -> TextType

    citeproc Citeproc.Types

    No documentation available.

  5. addFontVariant :: CiteprocOutput a => FontVariant -> a -> a

    citeproc Citeproc.Types

    No documentation available.

  6. formatFontVariant :: Formatting -> Maybe FontVariant

    citeproc Citeproc.Types

    No documentation available.

  7. inspectTVar :: forall (n :: Type -> Type) a . ModelTVar n a -> Invariant n a

    dejafu Test.DejaFu

    Read the content of a TVar. This is essentially readTVar.

  8. inspectTVar :: forall (n :: Type -> Type) a . ModelTVar n a -> Invariant n a

    dejafu Test.DejaFu.Conc

    Read the content of a TVar. This is essentially readTVar.

  9. IInspectTVar :: ModelTVar n a -> (a -> IAction n) -> IAction (n :: Type -> Type)

    dejafu Test.DejaFu.Conc.Internal.Common

    No documentation available.

  10. data ModelTVar (n :: Type -> Type) a

    dejafu Test.DejaFu.Conc.Internal.STM

    A TVar is modelled as a unique ID and a reference holding a value.

Page 40 of many | Previous | Next