Hoogle Search

Within LTS Haskell 24.50 (ghc-9.10.3)

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

  1. allM :: Monad m => (a -> m Bool) -> [a] -> m Bool

    verset Verset

    A version of all lifted to a monad. Retains the short-circuiting behaviour.

    allM Just [True,False,undefined] == Just False
    allM Just [True,True ,undefined] == undefined
    \(f :: Int -> Maybe Bool) xs -> anyM f xs == orM (map f xs)
    

  2. allProfileWindows :: XWindowMap

    xmonad-contrib XMonad.Actions.Profiles

    XWindowMap of all windows contained in a profile.

  3. allPPs :: ScreenId -> X ()

    xmonad-contrib XMonad.Config.Dmwit

    No documentation available.

  4. allSpecialKeys :: [(String, KeySym)]

    xmonad-contrib XMonad.Prelude

    A list of all special key names and their associated KeySyms.

  5. allApplications :: XWindowMap

    xmonad-contrib XMonad.Prompt.Window

    A helper to get the map of all applications

  6. allWindows :: XWindowMap

    xmonad-contrib XMonad.Prompt.Window

    A helper to get the map of all windows.

  7. allNamedScratchpadAction :: NamedScratchpads -> String -> X ()

    xmonad-contrib XMonad.Util.NamedScratchpad

    Like namedScratchpadAction, but execute the action for all scratchpads that match the query. This function almost always ignores its first argument; see Note [Ignored Arguments] for namedScratchpadAction.

  8. allWithProperty :: Property -> X [Window]

    xmonad-contrib XMonad.Util.WindowProperties

    Find all existing windows with specified property

  9. forkFinally :: IO a -> (Either SomeException a -> IO ()) -> IO ThreadId

    base Control.Concurrent

    Fork a thread and call the supplied function when the thread is about to terminate, with an exception or a returned value. The function is called with asynchronous exceptions masked.

    forkFinally action and_then =
    mask $ \restore ->
    forkIO $ try (restore action) >>= and_then
    
    This function is useful for informing the parent when a child terminates, for example.

  10. data ErrorCall

    base Control.Exception

    This is thrown when the user calls error. The first String is the argument given to error, second String is the location.

Page 178 of many | Previous | Next