Hoogle Search

Within LTS Haskell 24.32 (ghc-9.10.3)

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

  1. ev_first_keycode :: Event -> !KeyCode

    xmonad-contrib XMonad.Config.Prime

    No documentation available.

  2. lSBFirst :: ByteOrder

    xmonad-contrib XMonad.Config.Prime

    No documentation available.

  3. mSBFirst :: ByteOrder

    xmonad-contrib XMonad.Config.Prime

    No documentation available.

  4. 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]
    

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

  6. isFirst :: TreeZipper a -> Bool

    xmonad-contrib XMonad.Util.TreeZipper

    Check whenther this the first child

Page 119 of many | Previous | Next