CurryInfo: url-base-0.1.0 / Network.URL.param2urlencoded

definition: Info
 
param2urlencoded :: (String,String) -> String
param2urlencoded (n,v)
  | null v    = string2urlencoded n
  | otherwise = string2urlencoded n ++ '=' : string2urlencoded v
demand: Info
 argument 1
deterministic: Info
 deterministic operation
documentation: Info
 
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: Info
 _
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {({(,)}) |-> _}
name: Info
 param2urlencoded
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 (String, String) -> String
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 possibly non-terminating
totally-defined: Info
 possibly non-reducible on same data term