Safe Haskell | Safe-Inferred |
---|---|
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 | |
Show MultiMap | |
Monoid MultiMap | The default monoid implementation of Data.Map is left biased, this
implementation |
Ixed MultiMap | |
At MultiMap | |
Wrapped MultiMap | |
Renderable MultiMap | Encode a |
Param MultiMap | |
type Index MultiMap = Text | |
type IxValue MultiMap = [Text] | |
type Unwrapped MultiMap = Map Text [Text] |