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. readConfigFile :: FilePath -> IO (HashMap String String)

    shake Development.Shake.Config

    Read a config file, returning a list of the variables and their bindings. Config files use the Ninja lexical syntax: https://ninja-build.org/manual.html#_lexical_syntax

  2. readConfigFileWithEnv :: [(String, String)] -> FilePath -> IO (HashMap String String)

    shake Development.Shake.Config

    Read a config file with an initial environment, returning a list of the variables and their bindings. Config files use the Ninja lexical syntax: https://ninja-build.org/manual.html#_lexical_syntax

  3. readTBChan :: TBChan a -> STM a

    stm-chans Control.Concurrent.STM.TBChan

    Read the next value from the TBChan, retrying if the channel is empty.

  4. readTBMChan :: TBMChan a -> STM (Maybe a)

    stm-chans Control.Concurrent.STM.TBMChan

    Read the next value from the TBMChan, retrying if the channel is empty (and not closed). We return Nothing immediately if the channel is closed and empty.

  5. readTBMQueue :: TBMQueue a -> STM (Maybe a)

    stm-chans Control.Concurrent.STM.TBMQueue

    Read the next value from the TBMQueue, retrying if the queue is empty (and not closed). We return Nothing immediately if the queue is closed and empty.

  6. readTMChan :: TMChan a -> STM (Maybe a)

    stm-chans Control.Concurrent.STM.TMChan

    Read the next value from the TMChan, retrying if the channel is empty (and not closed). We return Nothing immediately if the channel is closed and empty.

  7. readTMQueue :: TMQueue a -> STM (Maybe a)

    stm-chans Control.Concurrent.STM.TMQueue

    Read the next value from the TMQueue, retrying if the queue is empty (and not closed). We return Nothing immediately if the queue is closed and empty.

  8. readOnly :: HasReadOnly s a => Lens' s a

    swagger2 Data.Swagger.Lens

    No documentation available.

  9. readFile :: ListLikeIO full item => FilePath -> IO full

    ListLike Data.ListLike

    Read file. May be lazy.

  10. readFile :: ListLikeIO full item => FilePath -> IO full

    ListLike Data.ListLike.IO

    Read file. May be lazy.

Page 207 of many | Previous | Next