vibe.d beta banner
get vibe.d
0.10.0

Asynchronous I/O that doesn’t get in your way, written in D

Function Json.opAssign

Allows assignment of D values to a JSON value.

ref Json opAssign (
  Json v
) nothrow return @trusted;

void opAssign (
  typeof(null) __param_0
) nothrow @trusted;

bool opAssign (
  bool v
) nothrow @safe;

int opAssign (
  int v
) nothrow @safe;

long opAssign (
  long v
) nothrow @safe;

std.bigint.BigInt opAssign (
  std.bigint.BigInt v
) nothrow @trusted;

double opAssign (
  double v
) nothrow @safe;

string opAssign (
  string v
) nothrow @trusted;

Json[] opAssign (
  Json[] v
) nothrow @trusted;

Json[string] opAssign (
  Json[string] v
) nothrow @trusted;
Authors

Sönke Ludwig

Copyright

© 2012-2015 Sönke Ludwig

License

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