Hoogle Search

Within LTS Haskell 24.52 (ghc-9.10.3)

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

  1. module Network.Wai.UrlMap

    This module gives you a way to mount applications under sub-URIs. For example:

    bugsApp, helpdeskApp, apiV1, apiV2, mainApp :: Application
    
    myApp :: Application
    myApp = mapUrls $
    mount "bugs"     bugsApp
    <|> mount "helpdesk" helpdeskApp
    <|> mount "api"
    (   mount "v1" apiV1
    <|> mount "v2" apiV2
    )
    <|> mountRoot mainApp
    

  2. type UrlMap = UrlMap' Application

    wai-extra Network.Wai.UrlMap

    No documentation available.

  3. data UrlMap' a

    wai-extra Network.Wai.UrlMap

    No documentation available.

  4. comapM :: (Distributive g, Monad m) => (m a -> b) -> m (g a) -> g b

    distributive Data.Distributive

    The dual of mapM

    comapM f = fmap f . distributeM
    

  5. bimapForest :: (a -> b) -> (c -> d) -> [Tree a c] -> [Tree b d]

    hspec-core Test.Hspec.Core.Spec

    No documentation available.

  6. bimapTree :: (a -> b) -> (c -> d) -> Tree a c -> Tree b d

    hspec-core Test.Hspec.Core.Spec

    No documentation available.

  7. module Data.IntMap

    No documentation available.

  8. module Data.IntMap.CharMap2

    No documentation available.

  9. newtype CharMap a

    regex-tdfa Data.IntMap.CharMap2

    No documentation available.

  10. CharMap :: IntMap a -> CharMap a

    regex-tdfa Data.IntMap.CharMap2

    No documentation available.

Page 471 of many | Previous | Next