Hoogle Search

Within LTS Haskell 24.50 (ghc-9.10.3)

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

  1. data FormParser (names :: [Symbol]) e (m :: Type -> Type) a

    forma Web.Forma

    The type represents the parser that you can run on a Value with help of runForm. The only way for the user of the library to create a parser is via the field function and its friends, see below. Users can combine existing parsers using applicative notation. FormParser is parametrized by four type variables:

    • names—collection of field names we can use in a form to be parsed with this parser.
    • e—type of validation errors.
    • m—underlying monad, FormParser is not a monad itself, so it's not a monad transformer, but validation can make use of the m monad.
    • a—result of parsing.
    FormParser is not a monad because it's not possible to write a Monad instance with the properties that we want (validation errors should not lead to short-cutting behavior).

  2. data FormResult (names :: [Symbol]) e a

    forma Web.Forma

    Result of parsing. names is the collection of allowed field names, e is the type of validation errors, and a is the type of parsing result.

  3. data ForAll (x :: k) (p :: k1)

    gdp Logic.Propositional

    Universal quantification.

  4. data Format

    gi-cairo-render GI.Cairo.Render

    No documentation available.

  5. FormatA1 :: Format

    gi-cairo-render GI.Cairo.Render

    No documentation available.

  6. FormatA8 :: Format

    gi-cairo-render GI.Cairo.Render

    No documentation available.

  7. FormatARGB32 :: Format

    gi-cairo-render GI.Cairo.Render

    No documentation available.

  8. FormatRGB24 :: Format

    gi-cairo-render GI.Cairo.Render

    No documentation available.

  9. pattern FORM_MIME_TYPE_MULTIPART :: Text

    gi-soup3 GI.Soup.Constants

    A macro containing the value multipart/form-data; the MIME type used for posting form data that contains files to be uploaded.

  10. pattern FORM_MIME_TYPE_URLENCODED :: Text

    gi-soup3 GI.Soup.Constants

    A macro containing the value application/x-www-form-urlencoded; the default MIME type for POSTing HTML form data.

Page 329 of many | Previous | Next