Value getter/setter for JSONType.array.
JSONException for read access if type is not JSONType.array. Note: this is @system because of the following pattern:
auto a = &(json.array()); json.uinteger = 0; // overwrite array pointer (*a)[0] = "world"; // segmentation fault
See Implementation
Value getter/setter for JSONType.array.