Hoogle Search
Within LTS Haskell 24.31 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
readIArray :: (IArray a e, Ix i, Read i, Read e) => ReadPrec (a i e)array Data.Array.Base No documentation available.
readArray :: (MArray a e m, Ix i) => a i e -> i -> m earray Data.Array.MArray Read an element from a mutable array
readArray :: (MArray a e m, Ix i) => a i e -> i -> m earray Data.Array.MArray.Safe Read an element from a mutable array
readN :: Int -> (ByteString -> a) -> Get abinary Data.Binary.Get.Internal Return at least n bytes, maybe more. If not enough data is available the computation will escape with Partial.
readNWith :: Int -> (Ptr a -> IO a) -> Get abinary Data.Binary.Get.Internal readNWith n f where f must be deterministic and not have side effects.
readTBQueue :: TBQueue a -> STM astm Control.Concurrent.STM.TBQueue Read the next value from the TBQueue.
-
stm Control.Concurrent.STM.TChan Read the next value from the TChan.
-
stm Control.Concurrent.STM.TMVar 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 astm Control.Concurrent.STM.TQueue Read the next value from the TQueue.
-
stm Control.Concurrent.STM.TVar No documentation available.