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.

  1. redistributeAdjustment :: Int -> Int -> CellView a -> CellView a

    table-layout Text.Layout.Table.Cell

    Redistribute padding or trimming using a given ratio.

  2. rightAdjustment :: CellView a -> Int

    table-layout Text.Layout.Table.Cell

    No documentation available.

  3. totalAdjustment :: CellView a -> Int

    table-layout Text.Layout.Table.Cell

    The total amount of adjustment in CellView.

  4. leftAdjustmentCM :: CellMod a -> Int

    table-layout Text.Layout.Table.Primitives.CellMod

    No documentation available.

  5. rightAdjustmentCM :: CellMod a -> Int

    table-layout Text.Layout.Table.Primitives.CellMod

    No documentation available.

  6. isJust :: Maybe a -> Bool

    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
    

  7. adjustEventInput :: X ()

    xmonad-contrib XMonad.Actions.UpdateFocus

    Adjusts the event mask to pick up pointer movements.

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

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

  10. whenJust :: Monad m => Maybe a -> (a -> m ()) -> m ()

    xmonad-contrib XMonad.Config.Prime

    Conditionally run an action, using a Maybe a to decide.

Page 166 of many | Previous | Next