Hoogle Search
Within LTS Haskell 24.50 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
readLE32 :: MonadIO m => Ptr RWops -> m Word32sdl2 SDL.Raw.Filesystem No documentation available.
readLE64 :: MonadIO m => Ptr RWops -> m Word64sdl2 SDL.Raw.Filesystem No documentation available.
readFile' :: Partial => FilePath -> Action Stringshake Development.Shake Read a file, after calling need. The argument file will be tracked as a dependency.
readFileLines :: Partial => FilePath -> Action [String]shake Development.Shake A version of readFile' which also splits the result into lines. The argument file will be tracked as a dependency.
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.