Hoogle Search

Within LTS Haskell 22.21 (ghc-9.6.5)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. readTVarIO :: TVar a -> IO a

    base GHC.Conc

    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. readTVarIO :: TVar a -> IO a

    base GHC.Conc.Sync

    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.

  3. readTVarIO :: TVar a -> IO a

    stm Control.Concurrent.STM.TVar

    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.

  4. readTVarIO :: MonadIO m => TVar a -> m a

    unliftio UnliftIO.STM

    Lifted version of readTVarIO

  5. readTVarIO :: MonadIO m => TVar a -> m a

    relude Relude.Lifted.Concurrent

    Lifted to MonadIO version of readTVarIO.

  6. 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.

  7. readTVarIO :: TVar a -> IO a

    rebase Rebase.Prelude

    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.

  8. readTVarIO :: MonadIO m => TVar a -> m a

    classy-prelude-yesod ClassyPrelude.Yesod

    Lifted version of readTVarIO

  9. readTVarIO :: MonadIO m => TVar a -> m a

    stack Stack.Prelude

    Lifted version of readTVarIO

  10. readTVarIO :: MonadIO m => TVar a -> m a

    termonad Termonad.Prelude

    Lifted version of readTVarIO

Page 1 of 2 | Next