Hoogle Search

Within LTS Haskell 24.51 (ghc-9.10.3)

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

  1. catchJust :: forall e b (es :: [Effect]) a . Exception e => (e -> Maybe b) -> Eff es a -> (b -> Eff es a) -> Eff es a

    effectful-core Effectful.Exception

    Lifted catchJust.

  2. handleJust :: forall e b (es :: [Effect]) a . (HasCallStack, Exception e) => (e -> Maybe b) -> (b -> Eff es a) -> Eff es a -> Eff es a

    effectful-core Effectful.Exception

    Flipped version of catchJust.

  3. tryJust :: forall e b (es :: [Effect]) a . Exception e => (e -> Maybe b) -> Eff es a -> Eff es (Either b a)

    effectful-core Effectful.Exception

    Lifted tryJust.

  4. showJustName :: Name -> String

    express Data.Express.Utils.TH

    Encodes a Name as a String. This is useful when generating error messages.

    > showJustName ''Int
    "Int"
    
    > showJustName ''String
    "String"
    
    > showJustName ''Maybe
    "Maybe"
    

  5. isJust :: Maybe a -> Bool

    foundation Foundation

    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
    

  6. TextAttributeJustification :: TextAttribute

    gi-atk GI.Atk.Enums

    The justification of the text, if set. Values are "left", "right", "center" or "fill"

  7. pattern KEY_BrightnessAdjust :: Word32

    gi-gdk3 GI.Gdk.Constants

    No description available in the introspection data.

  8. pattern KEY_ContrastAdjust :: Word32

    gi-gdk3 GI.Gdk.Constants

    No description available in the introspection data.

  9. class Functor f => Adjustable (f :: Type -> Type)

    keys Data.Key

    No documentation available.

  10. adjust :: Adjustable f => (a -> a) -> Key f -> f a -> f a

    keys Data.Key

    No documentation available.

Page 61 of many | Previous | Next