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. isWriteRequest :: Yesod site => Route site -> HandlerFor site Bool

    yesod-core Yesod.Core

    Determines whether the current request is a write request. By default, this assumes you are following RESTful principles, and determines this from request method. In particular, all except the following request methods are considered write: GET HEAD OPTIONS TRACE. This function is used to determine if a request is authorized; see isAuthorized.

  2. setEqDerived :: Bool -> RouteOpts -> RouteOpts

    yesod-core Yesod.Core.Dispatch

    No documentation available.

  3. type RequestBodyContents = ([(Text, Text)], [(Text, FileInfo)])

    yesod-core Yesod.Core.Handler

    A tuple containing both the POST parameters and submitted files.

  4. data YesodRequest

    yesod-core Yesod.Core.Handler

    The parsed request information. This type augments the standard WAI Request with additional information.

  5. YesodRequest :: [(Text, Text)] -> [(Text, Text)] -> Request -> [Text] -> !Maybe Text -> SessionMap -> [ContentType] -> YesodRequest

    yesod-core Yesod.Core.Handler

    No documentation available.

  6. getRequest :: MonadHandler m => m YesodRequest

    yesod-core Yesod.Core.Handler

    No documentation available.

  7. rawRequestBody :: forall (m :: Type -> Type) i . MonadHandler m => ConduitT i ByteString m ()

    yesod-core Yesod.Core.Handler

    Stream in the raw request body without any parsing.

  8. reqAccept :: YesodRequest -> ![ContentType]

    yesod-core Yesod.Core.Handler

    An ordered list of the accepted content types. Since 1.2.0

  9. reqCookies :: YesodRequest -> ![(Text, Text)]

    yesod-core Yesod.Core.Handler

    No documentation available.

  10. reqGetParams :: YesodRequest -> ![(Text, Text)]

    yesod-core Yesod.Core.Handler

    Same as queryString, but decoded to Text.

Page 244 of many | Previous | Next