Hoogle Search

Within LTS Haskell 24.42 (ghc-9.10.3)

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

  1. readArray :: (MArray a e m, Ix i) => a i e -> i -> m e

    array Data.Array.MArray

    Read an element from a mutable array

  2. readArray :: (MArray a e m, Ix i) => a i e -> i -> m e

    array Data.Array.MArray.Safe

    Read an element from a mutable array

  3. readN :: Int -> (ByteString -> a) -> Get a

    binary Data.Binary.Get.Internal

    Return at least n bytes, maybe more. If not enough data is available the computation will escape with Partial.

  4. readNWith :: Int -> (Ptr a -> IO a) -> Get a

    binary Data.Binary.Get.Internal

    readNWith n f where f must be deterministic and not have side effects.

  5. readTBQueue :: TBQueue a -> STM a

    stm Control.Concurrent.STM.TBQueue

    Read the next value from the TBQueue.

  6. readTChan :: TChan a -> STM a

    stm Control.Concurrent.STM.TChan

    Read the next value from the TChan.

  7. readTMVar :: TMVar a -> STM a

    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.

  8. readTQueue :: TQueue a -> STM a

    stm Control.Concurrent.STM.TQueue

    Read the next value from the TQueue.

  9. readTVar :: TVar a -> STM a

    stm Control.Concurrent.STM.TVar

    No documentation available.

  10. readTVarIO :: TVar a -> IO a

    stm Control.Concurrent.STM.TVar

    No documentation available.

Page 72 of many | Previous | Next