Allows direct indexing of array typed JSON values.
Json value = Json.emptyArray; value ~= 1; value ~= true; value ~= "foo"; assert(value[0] == 1); assert(value[1] == true); assert(value[2] == "foo");
See Implementation
Allows direct indexing of array typed JSON values.