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
) @trusted;

ref this (
  bool v
) @trusted;

ref this (
  byte v
) @safe;

ref this (
  ubyte v
) @safe;

ref this (
  short v
) @safe;

ref this (
  ushort v
) @safe;

ref this (
  int v
) @safe;

ref this (
  uint v
) @safe;

ref this (
  long v
) @trusted;

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

ref this (
  double v
) @trusted;

ref this (
  string v
) @trusted;

ref this (
  Json[] v
) @trusted;

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

Function Json.this

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

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