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.
readParen :: Bool -> ReadS a -> ReadS axmonad-contrib XMonad.Config.Prime readParen True p parses what p parses, but surrounded with parentheses. readParen False p parses what p parses, but optionally surrounded with parentheses.
-
xmonad-contrib XMonad.Config.Prime Read the state of a previous xmonad instance from a file and return that state. The state file is removed after reading it.
reader :: MonadReader r m => (r -> a) -> m axmonad-contrib XMonad.Config.Prime Retrieves a function of the current environment.
-
xmonad-contrib XMonad.Config.Prime equivalent to readsPrec with a precedence of 0.
readsLayout :: Layout a -> String -> [(Layout a, String)]xmonad-contrib XMonad.Config.Prime Using the Layout as a witness, parse existentially wrapped windows from a String.
readsPrec :: Read a => Int -> ReadS axmonad-contrib XMonad.Config.Prime attempts to parse a value from the front of the string, returning a list of (parsed value, remaining string) pairs. If there is no successful parse, the returned list is empty. Derived instances of Read and Show satisfy the following:
That is, readsPrec parses the string produced by showsPrec, and delivers the value that showsPrec started with.-
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.
-
xmonad-contrib XMonad.Util.EZConfig Parse a sequence of keys, returning Nothing if there is a parse failure (no parse, or ambiguous parse).
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).
-
base System.IO No documentation available.