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.
readPrec :: Read a => ReadPrec arebase Rebase.Prelude Proposed replacement for readsPrec using new-style parsers (GHC only).
readPrec_to_P :: ReadPrec a -> Int -> ReadP arebase Rebase.Prelude No documentation available.
readPrec_to_S :: ReadPrec a -> Int -> ReadS arebase Rebase.Prelude No documentation available.
readS_to_Prec :: (Int -> ReadS a) -> ReadPrec arebase Rebase.Prelude No documentation available.
readTBQueue :: TBQueue a -> STM arebase Rebase.Prelude Read the next value from the TBQueue.
-
rebase Rebase.Prelude Read the next value from the TChan.
-
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.
readTQueue :: TQueue a -> STM arebase Rebase.Prelude Read the next value from the TQueue.
-
rebase Rebase.Prelude Return the current value stored in a TVar.
-
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.