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.
maybeDividedBy :: Multipliable a => a -> a -> Maybe atypst Typst.Types No documentation available.
maybeMinus :: Summable a => a -> a -> Maybe atypst Typst.Types No documentation available.
maybeNegate :: Negatable a => a -> Maybe atypst Typst.Types No documentation available.
maybePlus :: Summable a => a -> a -> Maybe atypst Typst.Types No documentation available.
maybeTimes :: Multipliable a => a -> a -> Maybe atypst Typst.Types No documentation available.
maybeToFailure :: a -> Maybe e -> Validation e avalidation-selective Validation Maps Just to Failure In case of Nothing it wraps the given default value into Success.
>>> maybeToFailure True (Just "aba") Failure "aba" >>> maybeToFailure True Nothing Success True
maybeToSuccess :: e -> Maybe a -> Validation e avalidation-selective Validation Maps Just to Success. In case of Nothing it wraps the given default value into Failure
>>> maybeToSuccess True (Just "aba") Success "aba" >>> maybeToSuccess True Nothing Failure True
maybeToFailure :: a -> Maybe e -> Validation e avalidation-selective Validation.Combinators Maps Just to Failure In case of Nothing it wraps the given default value into Success.
>>> maybeToFailure True (Just "aba") Failure "aba" >>> maybeToFailure True Nothing Success True
maybeToSuccess :: e -> Maybe a -> Validation e avalidation-selective Validation.Combinators Maps Just to Success. In case of Nothing it wraps the given default value into Failure
>>> maybeToSuccess True (Just "aba") Success "aba" >>> maybeToSuccess True Nothing Failure True
-
web-rep Web.Rep.SharedReps Represent a Maybe using a checkbox. Hides the underlying content on Nothing