• About
  • Snapshots
  • LTS
  • Nightly
  • FAQ
  • Blog

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. readCreateProcess :: MonadIO m => CreateProcess -> String -> m String

    unliftio UnliftIO.Process

    Lifted readCreateProcess.

  2. readCreateProcessWithExitCode :: MonadIO m => CreateProcess -> String -> m (ExitCode, String, String)

    unliftio UnliftIO.Process

    Lifted readCreateProcessWithExitCode.

  3. readProcess :: MonadIO m => FilePath -> [String] -> String -> m String

    unliftio UnliftIO.Process

    Lifted readProcess.

  4. readProcessWithExitCode :: MonadIO m => FilePath -> [String] -> String -> m (ExitCode, String, String)

    unliftio UnliftIO.Process

    Lifted readProcessWithExitCode.

  5. readTBQueue :: TBQueue a -> STM a

    unliftio UnliftIO.STM

    Read the next value from the TBQueue.

  6. readTChan :: TChan a -> STM a

    unliftio UnliftIO.STM

    Read the next value from the TChan.

  7. readTMVar :: TMVar a -> STM a

    unliftio UnliftIO.STM

    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

    unliftio UnliftIO.STM

    Read the next value from the TQueue.

  9. readTVar :: TVar a -> STM a

    unliftio UnliftIO.STM

    Return the current value stored in a TVar.

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

    unliftio UnliftIO.STM

    Lifted version of readTVarIO

Page 102 of many | Previous | Next

Stackage is a service provided by the Haskell Foundation │ Originally developed by FP Complete