@[reducible, inline]
A parsed form parameter (name, value).
Equations
Instances For
Parse URL-encoded form body (application/x-www-form-urlencoded). $$\text{parseUrlEncoded} : \text{String} \to \text{List Param}$$
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Network.Wai.Parse.parseUrlEncoded.urlDecode s = String.map (fun (c : Char) => if (c == '+') = true then ' ' else c) s
Instances For
Parse request body parameters. For URL-encoded bodies, parses directly. Returns (params, files). $$\text{parseRequestBody} : \text{Request} \to \text{IO (List Param × List (String × FileInfo))}$$
Equations
- One or more equations did not get rendered due to their size.