Hoogle Search

Within LTS Haskell 24.51 (ghc-9.10.3)

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

  1. readMVar :: NFData a => MVar a -> IO a

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

  2. readFile :: StringRWIO s => FilePath -> IO s

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

  3. readTorrent :: ByteString -> Either String Torrent

    torrent Data.Torrent

    No documentation available.

  4. readMaybe :: Read a => String -> Maybe a

    verset 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
    

  5. readUserDirs :: IO (Map String String)

    xdg-userdirs System.Environment.XDG.UserDir

    Read user-configured set of user directories (from user-dirs.dirs)

  6. readUrgents :: X [Window]

    xmonad-contrib XMonad.Hooks.UrgencyHook

    X action that returns a list of currently urgent windows. You might use it, or withUrgents, in your custom logHook, to display the workspaces that contain urgent windows.

  7. readKeySequence :: forall (l :: Type -> Type) . XConfig l -> String -> Maybe (NonEmpty (KeyMask, KeySym))

    xmonad-contrib XMonad.Util.EZConfig

    Parse a sequence of keys, returning Nothing if there is a parse failure (no parse, or ambiguous parse).

  8. type ReadS a = String -> [(a, String)]

    base Prelude

    A parser for a type a, represented as a function that takes a String and returns a list of possible parses as (a,String) pairs. Note that this kind of backtracking parser is very inefficient; reading a large structure may be quite slow (cf ReadP).

  9. ReadMode :: IOMode

    base System.IO

    No documentation available.

  10. ReadWriteMode :: IOMode

    base System.IO

    No documentation available.

Page 363 of many | Previous | Next