vibe.d beta banner
get vibe.d
0.10.0

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

Json.this - multiple declarations

Function Json.this

Constructor for a JSON object.

ref this (
  typeof(null) __param_0
) nothrow @safe;

ref this (
  bool v
) nothrow @safe;

ref this (
  byte v
) nothrow @safe;

ref this (
  ubyte v
) nothrow @safe;

ref this (
  short v
) nothrow @safe;

ref this (
  ushort v
) nothrow @safe;

ref this (
  int v
) nothrow @safe;

ref this (
  uint v
) nothrow @safe;

ref this (
  long v
) nothrow @safe;

ref this (
  std.bigint.BigInt v
) nothrow @trusted;

ref this (
  double v
) nothrow @safe;

ref this (
  string v
) nothrow @trusted;

ref this (
  Json[] v
) nothrow @trusted;

ref this (
  Json[string] v
) nothrow @trusted;

Function Json.this

Converts a std.json.JSONValue object to a vibe Json object.

ref this (
  in const(std.json.JSONValue) value
) @safe;
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.