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.

  1. readLE32 :: MonadIO m => Ptr RWops -> m Word32

    sdl2 SDL.Raw.Filesystem

    No documentation available.

  2. readLE64 :: MonadIO m => Ptr RWops -> m Word64

    sdl2 SDL.Raw.Filesystem

    No documentation available.

  3. readFile' :: Partial => FilePath -> Action String

    shake Development.Shake

    Read a file, after calling need. The argument file will be tracked as a dependency.

  4. 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.

  5. 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

  6. 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

  7. readTBChan :: TBChan a -> STM a

    stm-chans Control.Concurrent.STM.TBChan

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

  8. 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.

  9. 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.

  10. 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.

Page 208 of many | Previous | Next