Hoogle Search

Within LTS Haskell 24.35 (ghc-9.10.3)

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

  1. connStmtMap :: SqlBackend -> StatementCache

    persistent Database.Persist.SqlBackend.Internal

    A reference to the cache of statements. Statements are keyed by the Text queries that generated them.

  2. connStmtMap :: MkSqlBackendArgs -> IORef (Map Text Statement)

    persistent Database.Persist.SqlBackend.Internal.MkSqlBackend

    A reference to the cache of statements. Statements are keyed by the Text queries that generated them.

  3. PersistMap :: [(Text, PersistValue)] -> PersistValue

    persistent Database.Persist.Types

    No documentation available.

  4. unmapDict :: (Dict a -> Dict b) -> a :- b

    constraints Data.Constraint

    This functor is fully faithful, which is to say that given any function you can write Dict a -> Dict b there also exists an entailment a :- b in the category of constraints that you can build.

  5. eventStreamAppRaw :: ((ServerEvent -> IO ()) -> IO () -> IO ()) -> Application

    wai-extra Network.Wai.EventSource

    Make a new WAI EventSource application with a handler that emits events.

  6. type HeaderMap = Map HeaderName HandleType

    wai-extra Network.Wai.Middleware.CombineHeaders

    The mapping of HeaderName to HandleType

  7. defaultHeaderMap :: HeaderMap

    wai-extra Network.Wai.Middleware.CombineHeaders

    The default collection of HTTP headers that can be combined in case there are multiples in one request or response. See the documentation of defaultCombineSettings for the exact list.

  8. setHeaderMap :: HeaderMap -> CombineSettings -> CombineSettings

    wai-extra Network.Wai.Middleware.CombineHeaders

    Override the HeaderMap of the CombineSettings (default: defaultHeaderMap)

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

  10. type UrlMap = UrlMap' Application

    wai-extra Network.Wai.UrlMap

    No documentation available.

Page 469 of many | Previous | Next