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.
ev_first_keycode :: Event -> !KeyCodexmonad-contrib XMonad.Config.Prime No documentation available.
-
xmonad-contrib XMonad.Config.Prime No documentation available.
-
xmonad-contrib XMonad.Config.Prime No documentation available.
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]
zipperFocusedAtFirstOf :: Eq q => [q] -> [q] -> Zipper qxmonad-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.
isFirst :: TreeZipper a -> Boolxmonad-contrib XMonad.Util.TreeZipper Check whenther this the first child