Hoogle Search

Within LTS Haskell 24.32 (ghc-9.10.3)

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

  1. readPrec :: Read a => ReadPrec a

    rebase Rebase.Prelude

    Proposed replacement for readsPrec using new-style parsers (GHC only).

  2. readPrec_to_P :: ReadPrec a -> Int -> ReadP a

    rebase Rebase.Prelude

    No documentation available.

  3. readPrec_to_S :: ReadPrec a -> Int -> ReadS a

    rebase Rebase.Prelude

    No documentation available.

  4. readS_to_Prec :: (Int -> ReadS a) -> ReadPrec a

    rebase Rebase.Prelude

    No documentation available.

  5. readTBQueue :: TBQueue a -> STM a

    rebase Rebase.Prelude

    Read the next value from the TBQueue.

  6. readTChan :: TChan a -> STM a

    rebase Rebase.Prelude

    Read the next value from the TChan.

  7. readTMVar :: TMVar a -> STM a

    rebase Rebase.Prelude

    This is a combination of takeTMVar and putTMVar; ie. it takes the value from the TMVar, puts it back, and also returns it.

  8. readTQueue :: TQueue a -> STM a

    rebase Rebase.Prelude

    Read the next value from the TQueue.

  9. readTVar :: TVar a -> STM a

    rebase Rebase.Prelude

    Return the current value stored in a TVar.

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

Page 227 of many | Previous | Next