Hoogle Search

Within LTS Haskell 24.38 (ghc-9.10.3)

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

  1. catchJust :: forall e (r :: EffectRow) b a . Member (Error e :: (Type -> Type) -> Type -> Type) r => (e -> Maybe b) -> Sem r a -> (b -> Sem r a) -> Sem r a

    incipit-core IncipitCore

    The function catchJust is like catch, but it takes an extra argument which is an exception predicate, a function which selects which type of exceptions we're interested in.

  2. tryJust :: forall e (r :: EffectRow) b a . Member (Error e :: (Type -> Type) -> Type -> Type) r => (e -> Maybe b) -> Sem r a -> Sem r (Either b a)

    incipit-core IncipitCore

    A variant of try that takes an exception predicate to select which exceptions are caught (c.f. catchJust). If the exception does not match the predicate, it is re-thrown.

  3. pattern LENGTHADJUST_SPACING :: (Eq a, Num a) => a

    jsaddle-dom JSDOM.Generated.SVGTextContentElement

    No documentation available.

  4. pattern LENGTHADJUST_SPACINGANDGLYPHS :: (Eq a, Num a) => a

    jsaddle-dom JSDOM.Generated.SVGTextContentElement

    No documentation available.

  5. pattern LENGTHADJUST_UNKNOWN :: (Eq a, Num a) => a

    jsaddle-dom JSDOM.Generated.SVGTextContentElement

    No documentation available.

  6. getLengthAdjust :: (MonadDOM m, IsSVGTextContentElement self) => self -> m SVGAnimatedEnumeration

    jsaddle-dom JSDOM.Generated.SVGTextContentElement

    Mozilla SVGTextContentElement.lengthAdjust documentation

  7. sCountJust :: Num n => SFlow (Maybe a) n

    midair Midair.Handy

    Count the number of Just values we've seen (Useful after e.g. a sFilter)

  8. sCountJustBy :: Num n => n -> SFlow (Maybe a) n

    midair Midair.Handy

    countJust by steps -- e.g. [0,3,6] instead of [0,1,2]

  9. sCountJustByHS :: Num n => n -> Maybe n -> SFlow (Maybe a) n

    midair Midair.Handy

    Hotswap version of sCountJustBy

  10. sCountJustHS :: Num n => Maybe n -> SFlow (Maybe a) n

    midair Midair.Handy

    Hotswap version of sCountJust

Page 184 of many | Previous | Next