Hoogle Search

Within LTS Haskell 24.6 (ghc-9.10.2)

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

  1. maybeP :: Parser a -> Parser (Maybe a)

    tagstream-conduit Text.HTML.TagStream.ByteString

    No documentation available.

  2. maybeP :: Parser a -> Parser (Maybe a)

    tagstream-conduit Text.HTML.TagStream.Text

    No documentation available.

  3. maybeToTry :: Monoid w => e -> Maybe a -> Try e w a

    typecheck-plugin-nat-simple Control.Monad.Try

    No documentation available.

  4. maybeDividedBy :: Multipliable a => a -> a -> Maybe a

    typst Typst.Types

    No documentation available.

  5. maybeMinus :: Summable a => a -> a -> Maybe a

    typst Typst.Types

    No documentation available.

  6. maybeNegate :: Negatable a => a -> Maybe a

    typst Typst.Types

    No documentation available.

  7. maybePlus :: Summable a => a -> a -> Maybe a

    typst Typst.Types

    No documentation available.

  8. maybeTimes :: Multipliable a => a -> a -> Maybe a

    typst Typst.Types

    No documentation available.

  9. maybeToFailure :: a -> Maybe e -> Validation e a

    validation-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
    

  10. maybeToSuccess :: e -> Maybe a -> Validation e a

    validation-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
    

Page 45 of many | Previous | Next