Hoogle Search

Within LTS Haskell 24.31 (ghc-9.10.3)

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

  1. maybeResult :: Result r -> Maybe r

    frontmatter Data.Frontmatter

    Convert a Result value to a Maybe value. A Partial result is treated as failure.

  2. maybeL :: Maybe a -> r -> (a -> r) -> r

    generic-case Generics.Case

    Same as maybe, except the Maybe comes before the case functions. Equivalent type signature:

    maybeL :: forall a r. Analysis (Maybe a) r
    
    The implementation is just:
    maybeL = gcase @(Maybe a)
    

  3. maybeR :: forall a r . r -> (a -> r) -> Maybe a -> r

    generic-case Generics.Case

    maybe, implemented using gcaseR. Equivalent type signature:

    maybeR :: forall a r. AnalysisR (Maybe a) r
    
    The implementation is just:
    maybeR = gcaseR @(Maybe a)
    

  4. maybeSenderOfEvent :: EventHasMaybeSender eventKind => eventKind -> Maybe HookUser

    github-webhooks GitHub.Data.Webhooks.Events

    Provides the sender context of a Webhook event.

  5. maybeToM :: MonadFail m => String -> Maybe a -> m a

    haxr Network.XmlRpc.Internals

    Convert a Maybe value to a value in any monad

  6. maybeValue :: Read a => String -> ReadPrec (Maybe a)

    histogram-fill Data.Histogram.Bin.Read

    Return optional value

  7. maybeAuthorized :: Yesod site => Route site -> Bool -> HandlerT site IO (Maybe (Route site))

    hledger-web Hledger.Web.Import

    Return the same URL if the user is authorized to see it. Built on top of isAuthorized. This is useful for building page that only contain links to pages the user is allowed to see.

  8. maybePlus :: (a -> Maybe a) -> a -> [a]

    hxt-xpath Text.XML.HXT.XPath.NavTree

    No documentation available.

  9. maybeStar :: (a -> Maybe a) -> a -> [a]

    hxt-xpath Text.XML.HXT.XPath.NavTree

    No documentation available.

  10. maybeToList :: Maybe a <-> [a]

    invertible Data.Invertible.Maybe

    Convert between Maybe and a (singleton) list (see maybeToList). (invert listToMaybe)

Page 67 of many | Previous | Next