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.
readUTF8File :: FilePath -> IO StringCabal Distribution.Simple.Utils Reads a UTF8 encoded text file as a Unicode String Reads lazily using ordinary readFile.
readTextData :: Read a => Text -> Either Text ahttp-api-data Web.HttpApiData Parse URL piece using Read instance. Use for types which do not involve letters:
>>> readTextData "1991-06-02" :: Either Text Day Right 1991-06-02
This parser is case sensitive and will not match showTextData in presence of letters:>>> readTextData (showTextData True) :: Either Text Bool Left "could not parse: `true'"
See parseBoundedTextData.readTextData :: Read a => Text -> Either Text ahttp-api-data Web.Internal.HttpApiData Parse URL piece using Read instance. Use for types which do not involve letters:
>>> readTextData "1991-06-02" :: Either Text Day Right 1991-06-02
This parser is case sensitive and will not match showTextData in presence of letters:>>> readTextData (showTextData True) :: Either Text Bool Left "could not parse: `true'"
See parseBoundedTextData.readFile :: ParseSettings -> FilePath -> IO Documentxml-conduit Text.XML No documentation available.
readFile :: ParseSettings -> FilePath -> IO Documentxml-conduit Text.XML.Unresolved No documentation available.
readChan :: MonadBase IO m => Chan a -> m alifted-base Control.Concurrent.Chan.Lifted Generalized version of readChan.
readMVar :: MonadBase IO m => MVar a -> m alifted-base Control.Concurrent.MVar.Lifted Generalized version of readMVar.
readIORef :: MonadBase IO m => IORef a -> m alifted-base Data.IORef.Lifted Generalized version of readIORef.
readConfig :: Config -> [String] -> IO Confighspec-core Test.Hspec.Core.Runner readConfig parses config options from several sources and constructs a Config value. It takes options from:
- ~/.hspec (a config file in the user's home directory)
- .hspec (a config file in the current working directory)
- environment variables starting with HSPEC_
- the provided list of command-line options (the second argument to readConfig)
getArgs >>= readConfig defaultConfig
readSymbolicLink :: FilePath -> IO FilePathunix-compat System.PosixCompat.Files Reads the FilePath pointed to by the symbolic link and returns it. Note: calls readlink.