Safe Haskell | Safe |
---|---|
Language | Haskell2010 |
This module is mainly intended for internal use. Nero.Request and Nero.Payload should provide everything you need for dealing with HTTP parameters.
HTTP Parameters
A Traversal'
of the values of a given HTTP parameter.
param :: Text -> Traversal' a Text Source
MultiMap
A Map
with multiple values. Also known as a MultiDict
in other web
frameworks.
Eq MultiMap Source | |
Show MultiMap Source | |
Monoid MultiMap Source | The default monoid implementation of Data.Map is left biased, this
implementation |
Ixed MultiMap Source | |
At MultiMap Source | |
Wrapped MultiMap Source | |
Renderable MultiMap Source | Encode a |
Param MultiMap Source | |
type Index MultiMap = Text Source | |
type IxValue MultiMap = [Text] Source | |
type Unwrapped MultiMap = Map Text [Text] Source |