View source code
Display the source code in std/json.d from which this page was generated on
github.
Improve this page
Quickly fork, edit online, and submit a pull request for this page.
Requires a signed-in GitHub account. This works well for small changes.
If you'd like to make larger changes you may want to consider using
local clone.
Page wiki
View or edit the community-maintained wiki page associated with this page.
std.json.json_value.op_index
- multiple declarations
- Function JSONValue.opIndex
- Function JSONValue.opIndex
Function JSONValue.opIndex
Array syntax for json arrays.
Throws
if JSONException
is not type
.
JSON_TYPE.ARRAY
Prototype
ref inout inout(JSONValue) opIndex( ulong i ) pure;
Example
JSONValue j = JSONValue( [42, 43, 44] ); assert( j[0].integer == 42 ); assert( j[1].integer == 43 );
Function JSONValue.opIndex
Hash syntax for json objects.
Throws
if JSONException
is not type
.
JSON_TYPE.OBJECT
Prototype
ref inout inout(JSONValue) opIndex( string k ) pure;
Example
JSONValue j = JSONValue( ["language": "D"] ); assert( j["language"].str == "D" );
Authors
Jeremie Pelletier, David Herberth