definition:
|
params2urlencoded :: [(String,String)] -> String
params2urlencoded ps = intercalate "&" (map param2urlencoded ps)
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
Translates a list of parameters (name/value pairs)
into URL encoded strings where the parameters are separated by `&`.
See also <http://www.w3.org/TR/html4/interact/forms.html#h-17.13.4.1>.
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_) |-> _}
|
name:
|
params2urlencoded
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
[(String, String)] -> String
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|