Hoogle Search

Within LTS Haskell 24.40 (ghc-9.10.3)

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

  1. PATCH :: Method

    snap-core Snap.Internal.Http.Types

    No documentation available.

  2. POST :: Method

    snap-core Snap.Internal.Http.Types

    No documentation available.

  3. PUT :: Method

    snap-core Snap.Internal.Http.Types

    No documentation available.

  4. type Params = Map ByteString [ByteString]

    snap-core Snap.Internal.Http.Types

    A type alias for the HTTP parameters mapping. Each parameter key maps to a list of ByteString values; if a parameter is specified multiple times (e.g.: "GET /foo?param=bar1&param=bar2"), looking up "param" in the mapping will give you ["bar1", "bar2"].

  5. module Snap.Internal.Parsing

    No documentation available.

  6. data PartDisposition

    snap-core Snap.Util.FileUploads

    Represents the disposition type specified via the Content-Disposition header field. See RFC 1806.

  7. type PartFold a = PartInfo -> InputStream ByteString -> a -> IO a

    snap-core Snap.Util.FileUploads

    A type alias for a function that will process one of the parts of a multipart/form-data HTTP request body with accumulator.

  8. data PartInfo

    snap-core Snap.Util.FileUploads

    PartInfo contains information about a "part" in a request uploaded with Content-type: multipart/form-data.

  9. type PartProcessor a = PartInfo -> InputStream ByteString -> IO a

    snap-core Snap.Util.FileUploads

    A type alias for a function that will process one of the parts of a multipart/form-data HTTP request body without usinc accumulator.

  10. data PartUploadPolicy

    snap-core Snap.Util.FileUploads

    Upload policy can be set on an "general" basis (using UploadPolicy), but handlers can also make policy decisions on individual files/parts uploaded. For each part uploaded, handlers can decide:

    • whether to allow the file upload at all
    • the maximum size of uploaded files, if allowed

Page 357 of many | Previous | Next