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. newTVar :: MonadSTM stm => a -> stm (TVar stm a)

    concurrency Control.Monad.STM.Class

    Create a new TVar containing the given value.

    newTVar = newTVarN ""
    

  2. newTVarN :: MonadSTM stm => String -> a -> stm (TVar stm a)

    concurrency Control.Monad.STM.Class

    Create a new TVar containing the given value, but it is given a name which may be used to present more useful debugging information. If an empty name is given, a counter starting from 0 is used. If names conflict, successive TVars with the same name are given a numeric suffix, counting up from 1.

    newTVarN _ = newTVar
    

  3. readTVar :: MonadSTM stm => TVar stm a -> stm a

    concurrency Control.Monad.STM.Class

    Return the current value stored in a TVar.

  4. writeTVar :: MonadSTM stm => TVar stm a -> a -> stm ()

    concurrency Control.Monad.STM.Class

    Write the supplied value into the TVar.

  5. newtype ETVar

    elm-bridge Elm.TyRep

    Type variable:

    ETVar "a"
    

  6. ETVar :: String -> ETVar

    elm-bridge Elm.TyRep

    No documentation available.

  7. defaultVar :: Var a

    envparse Env.Internal.Parser

    No documentation available.

  8. MutVarClosure :: StgInfoTable -> b -> GenClosure b

    ghc-heap GHC.Exts.Heap

    A MutVar#

  9. MutVarClosure :: StgInfoTable -> b -> GenClosure b

    ghc-heap GHC.Exts.Heap.Closures

    A MutVar#

  10. constructCellRendererTextVariant :: (IsCellRendererText o, MonadIO m) => Variant -> m (GValueConstruct o)

    gi-gtk3 GI.Gtk.Objects.CellRendererText

    Construct a GValueConstruct with valid value for the “variant” property. This is rarely needed directly, but it is used by new.

Page 45 of many | Previous | Next