Hoogle Search

Within LTS Haskell 24.33 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. readConfigFile :: MonadIO m => Path b File -> m (HashMap String String)

    shake-plus Development.Shake.Plus.Config

    Lifted readConfigFile with well-typed path.

  2. readConfigFileWithEnv :: MonadIO m => [(String, String)] -> Path b File -> m (HashMap String String)

    shake-plus Development.Shake.Plus.Config

    Lifted readConfigFileWithEnv with well-typed path.

  3. readFile' :: (MonadAction m, Partial) => Path b File -> m Text

    shake-plus Development.Shake.Plus.File

    Lifted version of readFile' with a well-typed filepath.

  4. readFileIn' :: (MonadAction m, Partial) => Path b Dir -> Path Rel File -> m Text

    shake-plus Development.Shake.Plus.File

    Like readFile', but with an argument for the parent directory. Used for symmetry with the way getDirectoryFiles takes arguments.

  5. readFileLines :: (MonadAction m, Partial) => Path b File -> m [Text]

    shake-plus Development.Shake.Plus.File

    Lifted version of readFileLines a well-typed filepath.

  6. readSVar :: SVar a -> IO a

    skip-var Control.Concurrent.SVar

    Read a value from an SVar. Blocks if there isn't a new value since the last read, or if the SVar is empty.

  7. readRef :: Ref m a -> m a

    stateref Data.StateRef

    Read a Ref. See readReference.

  8. readsRef :: (ReadRef sr m a, Monad m) => sr -> (a -> b) -> m b

    stateref Data.StateRef

    Essentially the same concept as gets, asks, et al. Typically useful to read a field of a referenced ADT by passing a record selector as the second argument.

  9. readReference :: ReadRef sr m a => sr -> m a

    stateref Data.StateRef.Types

    Get the current value referenced by the given state reference.

  10. readChan :: NFData a => Chan a -> IO a

    strict-concurrency Control.Concurrent.Chan.Strict

    Read the next value from the Chan.

Page 361 of many | Previous | Next