Constructor for JSONValue. If arg is a JSONValue its value and type will be copied to the new JSONValue. Note that this is a shallow copy: if type is JSONType.object or JSONType.array then only the reference to the data will be copied. Otherwise, arg must be implicitly convertible to one of the following types: typeof(null), string, ulong, long, double, an associative array V[K] for any V and K i.e. a JSON object, any array or bool. The type will be set accordingly.
Implements the foreach opApply interface for json arrays.
Implements the foreach opApply interface for json objects.
Support for the in operator.
Array syntax for json arrays.
Hash syntax for json objects.
Operator sets value for element of JSON object by key.
Implicitly calls toJSON on this JSONValue, like toString, but also passes true as pretty argument.
Implicitly calls toJSON on this JSONValue.
Value getter/setter for JSONType.array.
Value getter for JSONType.array. Unlike array, this retrieves the array by value and can be used in @safe code.
Value getter/setter for boolean stored in JSON.
Value getter/setter for JSONType.float_. Note that despite the name, this is a 64-bit double, not a 32-bit float.
Generic type value getter A convenience getter that returns this JSONValue as the specified D type. Note: only numeric, bool, string, JSONValue[string] and JSONValue[] types are accepted
Generic type value getter A convenience getter that returns this JSONValue as the specified D type. Note: only numeric, bool, string, JSONValue[string] and JSONValue[] types are accepted
Value getter/setter for JSONType.integer.
Test whether the type is JSONType.null_
Value getter/setter for JSONType.object.
Value getter for JSONType.object. Unlike object, this retrieves the object by value and can be used in @safe code.
Value getter/setter for JSONType.string.
Returns the JSONType of the value stored in this structure.
Value getter/setter for JSONType.uinteger.
JSON value node