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. maybeDividedBy :: Multipliable a => a -> a -> Maybe a

    typst Typst.Types

    No documentation available.

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

    typst Typst.Types

    No documentation available.

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

    typst Typst.Types

    No documentation available.

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

    typst Typst.Types

    No documentation available.

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

    typst Typst.Types

    No documentation available.

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

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

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

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

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

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

  10. maybeRep :: forall (m :: Type -> Type) a . Monad m => Maybe ByteString -> Bool -> SharedRep m a -> SharedRep m (Maybe a)

    web-rep Web.Rep.SharedReps

    Represent a Maybe using a checkbox. Hides the underlying content on Nothing

Page 61 of many | Previous | Next