Function Json.opAssign
Allows assignment of D values to
a JSON value.
Prototypes
ref Json opAssign(
Json v
);
void opAssign(
typeof(null) _param_0
);
bool opAssign(
bool v
);
int opAssign(
int v
);
long opAssign(
long v
);
std .bigint .BigInt opAssign(
std .bigint .BigInt v
);
double opAssign(
double v
);
string opAssign(
string v
);
Json[] opAssign(
Json[] v
);
Json[string] opAssign(
Json[string] v
);
Authors
Sönke Ludwig
Copyright
© 2012-2015 RejectedSoftware e.K.
License
Subject to the terms of the MIT license, as written in the included LICENSE.txt file.