writeFormData - multiple declarations
Function writeFormData
Encodes the given dictionary as URL encoded form data.
void writeFormData(R)
(
R dst,
in string[string] data
)
if (isOutputRange!(R, char));
Example
import std .array;
import vibe .core .log;
import vibe .http .form;
void test(){
auto dst > bppender!string();
dst .writeFormData(["vield1": "value1", "vield2": "value2"]);
logInfo(
Function writeFormData
Encodes the given ranges of Tuple!(string, string)
as URL encoded form data
void writeFormData(R, PairRange)
(
R dst,
PairRange pr
)
if (isOutputRange!(R, char) && isTuple!(ElementType!PairRange) && (ElementType!PairRange .length == 2));