JSONValue.get

inout(T) get(T)() @property inout const pure @safe

A convenience getter that returns this JSONValue as the specified D type.

Note

Only numeric types, bool, string, JSONValue[string], and JSONValue[] types are accepted

Throws

JSONException if T cannot hold the contents of this JSONValue

ConvException in case of integer overflow when converting to T

inout(T) get(T : JSONValue[])() @property inout pure @trusted
No documentation available for this declaration.
inout(T) get(T : JSONValue[string])() @property inout pure @trusted

ditto