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.
-
verset Verset No documentation available.
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
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.
bindFirst :: [(Query Bool, X ())] -> X ()xmonad-contrib XMonad.Actions.PerWindowKeys Run the action paired with the first Query that holds true.
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