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.
readMVar :: NFData a => MVar a -> IO astrict-concurrency Control.Concurrent.MVar.Strict This is a combination of takeMVar and putMVar; ie. it takes the value from the MVar, puts it back, and also returns it.
readFile :: StringRWIO s => FilePath -> IO sstring-class Data.String.Class Read a file and returns the contents of the file as a string Depending on the instance, this function might expect the file to be non-binary. The default definition uses openFile to open the file.
readTorrent :: ByteString -> Either String Torrenttorrent Data.Torrent No documentation available.
readMaybe :: Read a => String -> Maybe averset Verset Parse a string using the Read instance. Succeeds if there is exactly one valid result.
>>> readMaybe "123" :: Maybe Int Just 123
>>> readMaybe "hello" :: Maybe Int Nothing
readUserDirs :: IO (Map String String)xdg-userdirs System.Environment.XDG.UserDir Read user-configured set of user directories (from user-dirs.dirs)
-
xmonad-contrib XMonad.Config.Prime interface to the X11 library function XReadBitmapFile.
readFile :: FilePath -> IO Stringxmonad-contrib XMonad.Config.Prime The readFile function reads a file and returns the contents of the file as a string. The file is read lazily, on demand, as with getContents.
readIO :: Read a => String -> IO axmonad-contrib XMonad.Config.Prime The readIO function is similar to read except that it signals parse failure to the IO monad instead of terminating the program.
readList :: Read a => ReadS [a]xmonad-contrib XMonad.Config.Prime The method readList is provided to allow the programmer to give a specialised way of parsing lists of values. For example, this is used by the predefined Read instance of the Char type, where values of type String are expected to use double quotes, rather than square brackets.
-
xmonad-contrib XMonad.Config.Prime