Method Json.opAssign

Allows assignment of D values to a JSON value.

Prototypes

Json opAssign(
  Json v
) ref;

void opAssign();

bool opAssign(
  bool v
);

int opAssign(
  int v
);

long opAssign(
  long 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-2013 RejectedSoftware e.K.

License

Subject to the terms of the MIT license, as written in the included LICENSE.txt file.