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.
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
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
readTBChan :: TBChan a -> STM astm-chans Control.Concurrent.STM.TBChan Read the next value from the TBChan, retrying if the channel is empty.
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.
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.
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.
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.
readOnly :: HasReadOnly s a => Lens' s aswagger2 Data.Swagger.Lens No documentation available.
readFile :: ListLikeIO full item => FilePath -> IO fullListLike Data.ListLike Read file. May be lazy.
readFile :: ListLikeIO full item => FilePath -> IO fullListLike Data.ListLike.IO Read file. May be lazy.