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. getFirst :: First a -> a

    verset Verset

    No documentation available.

  2. withFirstMinimized :: (Window -> X ()) -> X ()

    xmonad-contrib XMonad.Actions.Minimize

    Perform an action with first minimized window on current workspace or do nothing if there is no minimized windows on current workspace

  3. withFirstMinimized' :: (Maybe Window -> X ()) -> X ()

    xmonad-contrib XMonad.Actions.Minimize

    Like withFirstMinimized but the provided action is always invoked with a 'Maybe Window', that will be nothing if there is no first minimized window.

  4. bindFirst :: [(Query Bool, X ())] -> X ()

    xmonad-contrib XMonad.Actions.PerWindowKeys

    Run the action paired with the first Query that holds true.

  5. deleteFirstsBy :: (a -> a -> Bool) -> [a] -> [a] -> [a]

    xmonad-contrib XMonad.Prelude

    The deleteFirstsBy function takes a predicate and two lists and returns the first list with the first occurrence of each element of the second list removed. This is the non-overloaded version of (\\).

    (\\) == deleteFirstsBy (==)
    
    The second list must be finite, but the first may be infinite.

    Examples

    >>> deleteFirstsBy (>) [1..10] [3, 4, 5]
    [4,5,6,7,8,9,10]
    
    >>> deleteFirstsBy (/=) [1..10] [1, 3, 5]
    [4,5,6,7,8,9,10]
    

  6. zipperFocusedAtFirstOf :: Eq q => [q] -> [q] -> Zipper q

    xmonad-contrib XMonad.Util.Stack

    differentiate zs xs takes the first z from z2 that also belongs to xs and turns xs into a stack with z being the current element. Acts as differentiate if zs and xs@ don't intersect.

  7. isFirst :: TreeZipper a -> Bool

    xmonad-contrib XMonad.Util.TreeZipper

    Check whenther this the first child

Page 122 of many | Previous | Next