Hoogle Search
Within LTS Haskell 24.28 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
redistributeAdjustment :: Int -> Int -> CellView a -> CellView atable-layout Text.Layout.Table.Cell Redistribute padding or trimming using a given ratio.
rightAdjustment :: CellView a -> Inttable-layout Text.Layout.Table.Cell No documentation available.
totalAdjustment :: CellView a -> Inttable-layout Text.Layout.Table.Cell The total amount of adjustment in CellView.
leftAdjustmentCM :: CellMod a -> Inttable-layout Text.Layout.Table.Primitives.CellMod No documentation available.
rightAdjustmentCM :: CellMod a -> Inttable-layout Text.Layout.Table.Primitives.CellMod No documentation available.
-
verset Verset The isJust function returns True iff its argument is of the form Just _.
Examples
Basic usage:>>> isJust (Just 3) True
>>> isJust (Just ()) True
>>> isJust Nothing False
Only the outer constructor is taken into consideration:>>> isJust (Just Nothing) True
-
xmonad-contrib XMonad.Actions.UpdateFocus Adjusts the event mask to pick up pointer movements.
clickJustFocuses :: forall (l :: Type -> Type) . Settable Bool (XConfig l)xmonad-contrib XMonad.Config.Prime If True, a mouse click on an inactive window focuses it, but the click is not passed to the window. If False, the click is also passed to the window. Default True
mkAdjust :: Window -> X (D -> D)xmonad-contrib XMonad.Config.Prime Given a window, build an adjuster function that will reduce the given dimensions according to the window's border width and size hints.
whenJust :: Monad m => Maybe a -> (a -> m ()) -> m ()xmonad-contrib XMonad.Config.Prime Conditionally run an action, using a Maybe a to decide.