definition:
|
param2urlencoded :: (String,String) -> String
param2urlencoded (n,v)
| null v = string2urlencoded n
| otherwise = string2urlencoded n ++ '=' : string2urlencoded v
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
Translates a parameter (name/value pair) into an URL encoded string
where both components are URL encoded and separated by `=`.
The separator is omitted if the value is the empty string.
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:
|
param2urlencoded
|
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
|