urlEncode - multiple declarations
Function urlEncode
Writes to the OutputRange
an URL encoded string as specified in RFC 3986 section 2
void urlEncode(R, T)
(
auto ref R dst,
T map
)
if (isFormMap!T && isOutputRange!(R, char));
Parameters
Name | Description |
---|---|
dst | The destination OutputRange where the resulting string must be written to. |
map | An iterable key-value map iterable with foreach(string key, string value; map) . |
Function urlEncode
Returns an URL encoded string as specified in RFC 3986 section 2
string urlEncode(T)
(
T map
)
if (isFormMap!T);
Parameters
Name | Description |
---|---|
map | An iterable key-value map iterable with foreach(string key, string value; map) . |